Update Dockerfile to avoid file system permission issues

This commit is contained in:
Sebastián Ramírez 2017-06-24 19:40:43 -05:00
parent 8d56f0763e
commit ead3dbbfb3

View file

@ -9,5 +9,5 @@ RUN npm install --no-progress --production && npm install --no-progress passport
# to download and install all the NPM dependencies every time there's a change in the source code
COPY . /app
EXPOSE 3000
ENTRYPOINT ["/app/docker-entrypoint.sh"]
ENTRYPOINT ["bash", "/app/docker-entrypoint.sh"]
CMD ["node", "index.js"]