Skip to content

Commit 6ca1e60

Browse files
committed
Removed again arm v6 and v7 platforms
1 parent ae73a21 commit 6ca1e60

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish_to_docker_hub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ jobs:
5959
with:
6060
context: .
6161
file: ./docker/Dockerfile
62-
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
62+
platforms: linux/amd64,linux/arm64
6363
push: true
6464
tags: ${{ steps.prep.outputs.tags }}

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM node:18-alpine3.18 AS build
1+
FROM node:20-alpine3.18 AS build
22
WORKDIR /tmp
33
COPY . .
44
RUN npm ci && npm run build
55

6-
FROM node:18-alpine3.18 AS prod
6+
FROM node:20-alpine3.18 AS prod
77
WORKDIR /tmp_prod
88
COPY --from=build /tmp/dist ./dist
99
COPY --from=build /tmp/docker/run.sh ./run.sh

0 commit comments

Comments
 (0)