From 297067399db2bf7505561d67667ca0d559a8e42b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 8 Jul 2019 16:09:13 +0200 Subject: [PATCH] yarn -> npm in dockerfile --- support/docker/production/Dockerfile.stretch | 4 ++-- 1 file 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 @@ FROM node:8-stretch -# Allow to pass extra options to the yarn run build +# Allow to pass extra options to the npm run build # eg: --light --light-fr to not build all client languages # (speed up build time if i18n is not required) ARG NPM_RUN_BUILD_OPTS @@ -59,5 +59,5 @@ COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entr ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] # Run the application -CMD ["yarn", "start"] +CMD ["npm", "start"] EXPOSE 9000 -- 2.41.0