From 6468a6ff5ec29a38019fb02660d340fea4bd2582 Mon Sep 17 00:00:00 2001 From: Migushthe2nd <ihaverkamp@live.nl> Date: Fri, 22 Oct 2021 01:13:37 +0200 Subject: [PATCH] Fix Dockerfile issues --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index cecfb42..8c2fa04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ -FROM arm32v7/node:16 AS build-env +FROM arm32v7/node:15 AS build-env WORKDIR /usr/src/app # Environment variables for production -ENV NODE_ENV=production COPY package*.json ./ RUN yarn install @@ -11,7 +10,6 @@ COPY . . RUN yarn run build RUN yarn run generate - FROM arm32v7/nginx:alpine -COPY --from=0 dist ./html -COPY html /usr/share/nginx/html +COPY --from=build-env /usr/src/app/dist /usr/share/nginx/html +ENV NODE_ENV=production -- GitLab