From ead3dbbfb353ebb44d7518d1c27c496537344ce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 24 Jun 2017 19:40:43 -0500 Subject: [PATCH] Update Dockerfile to avoid file system permission issues --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d2c3228..80ae090c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file