diff --git a/Dockerfile b/Dockerfile index 52542534..2371b219 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /app 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 +FROM nginx:stable-alpine-slim 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 diff --git a/package.json b/package.json index 4a0659ca..b1f6d73f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "0.34.5", + "version": "0.34.6", "private": true, "scripts": { "dev": "GENERATE_SOURCEMAP=false react-scripts start",