From 72ef76b8a00f6325057f4accae15d19d770b56e7 Mon Sep 17 00:00:00 2001 From: Hyunggyu Jang Date: Wed, 8 Mar 2023 10:38:22 +0900 Subject: [PATCH] webpack artifacts should exist for nginx image --- client/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index d50597cbf6..261ec0c71f 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -7,8 +7,8 @@ COPY package*.json /client/ RUN npm install # Copy the current directory contents into the container at /client COPY . /client/ -# Run the app when the container launches -CMD ["npm", "run", "build"] +# Build webpack artifacts +RUN npm run build # Stage 2 FROM nginx:stable-alpine