diff --git a/Dockerfile b/Dockerfile index fde8db3f..52542534 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN npm install -s RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build RUN rm -rf /app/build/static/js/*.map FROM nginx:latest as production-stage +RUN apt-get update && apt-get upgrade -y COPY --from=build-stage /app/nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build-stage /app/build /usr/share/nginx/html EXPOSE 80 \ No newline at end of file diff --git a/package.json b/package.json index da4a401d..4a0659ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "0.34.4", + "version": "0.34.5", "private": true, "scripts": { "dev": "GENERATE_SOURCEMAP=false react-scripts start",