Update Dockerfile to avoid file system permission issues
This commit is contained in:
parent
8d56f0763e
commit
ead3dbbfb3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
# to download and install all the NPM dependencies every time there's a change in the source code
|
||||||
COPY . /app
|
COPY . /app
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
ENTRYPOINT ["bash", "/app/docker-entrypoint.sh"]
|
||||||
CMD ["node", "index.js"]
|
CMD ["node", "index.js"]
|
Loading…
Add table
Add a link
Reference in a new issue