fix dockerfile (remove deleting .env file) - it is found in dockerignore and fails to build if the file not exists

This commit is contained in:
Roee Gadot
2021-08-23 16:50:32 +03:00
parent 20a2caf3d9
commit 4f514ae1f4

View File

@@ -3,7 +3,6 @@ FROM node:14-slim AS site-build
WORKDIR /app/ui-build
COPY ui .
RUN rm .env
RUN npm i
RUN npm run build