From 34a232c86203deb47820ca810038c25e474c588f Mon Sep 17 00:00:00 2001 From: Christopher Guindon <chris.guindon@eclipse-foundation.org> Date: Thu, 22 Oct 2020 07:46:23 -0400 Subject: [PATCH] syncronize changes with gitlab dockerfile Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org> --- Dockerfile.gitlab | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.gitlab b/Dockerfile.gitlab index e0368c8..0ef8d7b 100644 --- a/Dockerfile.gitlab +++ b/Dockerfile.gitlab @@ -21,12 +21,12 @@ ENV PROVIDER ${PROVIDER:-oauth2_generic} ARG HOST=https://gitlab-test.eclipse.org ENV HOST ${HOST:-https://gitlab-test.eclipse.org} +## Copy over required script files +COPY src src/ + ## Copy NPM configs and install dependencies COPY package*.json ./ -RUN npm install - -## Copy over required script files -COPY ./src/* ./src/ +RUN npm ci ## run the script CMD npm run lab-sync -- --verbose=$VERBOSE_VAL --dryrun=$DRYRUN --provider=$PROVIDER --host=$HOST --tls-min-v1.0 -- GitLab