diff options
-rw-r--r-- | support/docker/production/Dockerfile.stretch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/docker/production/Dockerfile.stretch b/support/docker/production/Dockerfile.stretch index 0cc764508..c653233b6 100644 --- a/support/docker/production/Dockerfile.stretch +++ b/support/docker/production/Dockerfile.stretch | |||
@@ -1,6 +1,6 @@ | |||
1 | FROM node:8-stretch | 1 | FROM node:8-stretch |
2 | 2 | ||
3 | # Allow to pass extra options to the yarn run build | 3 | # Allow to pass extra options to the npm run build |
4 | # eg: --light --light-fr to not build all client languages | 4 | # eg: --light --light-fr to not build all client languages |
5 | # (speed up build time if i18n is not required) | 5 | # (speed up build time if i18n is not required) |
6 | ARG NPM_RUN_BUILD_OPTS | 6 | ARG NPM_RUN_BUILD_OPTS |
@@ -59,5 +59,5 @@ COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entr | |||
59 | ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] | 59 | ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] |
60 | 60 | ||
61 | # Run the application | 61 | # Run the application |
62 | CMD ["yarn", "start"] | 62 | CMD ["npm", "start"] |
63 | EXPOSE 9000 | 63 | EXPOSE 9000 |