From 329fa2513c6e6eadd3a1b0a2f66067f807a27b9f Mon Sep 17 00:00:00 2001 From: vignesha22 <82584664+vignesha22@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:31:32 +0530 Subject: [PATCH] added copy cmd to docker to fix build issues (#12) --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 3e7090b..1eb83b7 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -17,6 +17,7 @@ WORKDIR /usr/app ARG APP_ENV COPY --from=builder /app/build ./build COPY package.json ./ +COPY --from=builder /app/config.json.default /usr/app/config.json RUN npm install USER node ENV NODE_ENV="production"