Skip to content

Commit

Permalink
fix: fix version of alpine docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
OldStarchy committed May 3, 2022
1 parent 1e309ce commit c939092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14 AS builder
FROM node:16-alpine3.12 AS builder
WORKDIR /app

COPY package.json .
Expand All @@ -15,7 +15,7 @@ RUN yarn install --production && \
yarn build:prod


FROM arm32v7/node:14-alpine
FROM arm32v7/node:16-alpine3.12
WORKDIR /app

COPY --from=builder /app/dist .
Expand Down

0 comments on commit c939092

Please sign in to comment.