diff --git a/Dockerfile b/Dockerfile index 29df29bb..a1a0794c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,8 @@ 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:alpine as production-stage +FROM nginx:latest as production-stage +RUN apt 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 9f5a43a1..6e0deab4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "0.34.2", + "version": "0.34.3", "private": true, "scripts": { "dev": "GENERATE_SOURCEMAP=false react-scripts start",