Skip to content

Commit

Permalink
Readded arm v6 and v7 platform to workflow publish_to_docker_hub (2nd…
Browse files Browse the repository at this point in the history
… try)
  • Loading branch information
bropat committed Sep 29, 2024
1 parent 0d32732 commit ae73a21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_docker_hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ jobs:
with:
context: .
file: ./docker/Dockerfile
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
push: true
tags: ${{ steps.prep.outputs.tags }}
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:20-alpine3.18 AS build
FROM node:18-alpine3.18 AS build
WORKDIR /tmp
COPY . .
RUN npm ci && npm run build

FROM node:20-alpine3.18 AS prod
FROM node:18-alpine3.18 AS prod
WORKDIR /tmp_prod
COPY --from=build /tmp/dist ./dist
COPY --from=build /tmp/docker/run.sh ./run.sh
Expand Down

0 comments on commit ae73a21

Please sign in to comment.