1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

fix for production build in dockerfile #379

This commit is contained in:
Sonja Happ 2022-04-11 16:05:50 +02:00
parent a40d138165
commit 5d8c3516e1

View file

@ -29,7 +29,8 @@ RUN npm install --force
# Install app dependencies
ARG REACT_APP_BRAND
COPY . /usr/src/app
RUN npm run build
# Production build, CI=false prevents warnings from being treated as errors
RUN CI=false npm run build
FROM nginx