From 411bbba9769adb4840db7707107ecf1594947df9 Mon Sep 17 00:00:00 2001 From: herrmannplatz Date: Tue, 12 Jun 2018 14:36:18 +0200 Subject: [PATCH] fix(docker): Fix copy instruction --- generator/template/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/template/Dockerfile b/generator/template/Dockerfile index f414d68..235346a 100644 --- a/generator/template/Dockerfile +++ b/generator/template/Dockerfile @@ -11,6 +11,6 @@ FROM node:alpine EXPOSE 8080 WORKDIR /usr/src/app RUN npm install serve -g -COPY --from=frontend /usr/src/app/dist ./dist +COPY --from=build /usr/src/app/dist ./dist USER node CMD ["serve", "--single", "--port", "8080", "dist"]