From c93909228224be11eb22614335c32619bb0f37b8 Mon Sep 17 00:00:00 2001 From: Nicholas Sorokin Date: Tue, 3 May 2022 22:37:56 +0930 Subject: [PATCH] fix: fix version of alpine docker image https://github.com/nodejs/docker-node/issues/1589#issuecomment-970581391 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af2c464..ac2adf8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14 AS builder +FROM node:16-alpine3.12 AS builder WORKDIR /app COPY package.json . @@ -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 .