diff --git a/CHANGELOG.md b/CHANGELOG.md index e8d6aef..0970172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - links at the bottom for new users - fixes for hide contrib setting +- fix problem with node-prune on production build ### Security diff --git a/Dockerfile b/Dockerfile index e3ef8d4..1113fd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,8 @@ RUN yarn build RUN npm prune --production # run node prune -RUN /usr/local/bin/node-prune +# there is some problem running node prune that then prevents the frontend to load (just start with /form/1 and it will crash) +#RUN /usr/local/bin/node-prune FROM node:14-alpine MAINTAINER OhMyForm