Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarvl committed Feb 21, 2024
1 parent 1f2f955 commit 153c335
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Build and push image
run: |
docker buildx build --platform linux/arm64 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME:$IMAGE_TAG" --push .
docker buildx build --platform linux/arm64/v8 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME:$IMAGE_TAG" --push .
- name: Build and push dracula image
run: |
docker buildx build --build-arg BOT_PHRASES_URL=${{ secrets.DRACULA_URL }}" --platform linux/arm64 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME-dracula:$IMAGE_TAG" --push .
docker buildx build --platform linux/arm64/v8 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME-dracula:$IMAGE_TAG" --build-arg BOT_PHRASES_URL=${{ secrets.DRACULA_URL }}" --push .
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/node:14.15.3-alpine AS builder
FROM node:14.15.3-alpine AS builder
WORKDIR /app
COPY package*.json .
RUN npm install
Expand Down

0 comments on commit 153c335

Please sign in to comment.