From 5faf03e3b3eaf86efeb90d53ffd4dbcfe3183d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 3 Jun 2022 15:36:11 +0200 Subject: [PATCH] fix: revert back to "npm install" "npm ci" is broken in master because of the node 16 upgrade. See discussion here: https://github.com/openedx/edx-platform/pull/30459#issuecomment-1136888560 We will revert to "npm ci" once the node 16 upgrade is complete. --- tutor/templates/build/openedx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 913c381..eb06564 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -111,7 +111,7 @@ ARG NPM_REGISTRY={{ NPM_REGISTRY }} COPY --from=code /openedx/edx-platform/package.json /openedx/edx-platform/package.json COPY --from=code /openedx/edx-platform/package-lock.json /openedx/edx-platform/package-lock.json WORKDIR /openedx/edx-platform -RUN npm clean-install --verbose --registry=$NPM_REGISTRY +RUN npm install --verbose --registry=$NPM_REGISTRY ###### Production image with system and python requirements FROM minimal as production