diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49f753626fe11472f7abac6e324313d9c40b9dd0..1406d89676578e8eec70d1f12b51cf95ff535e64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,7 +47,7 @@ build: cp /build/Dockerfile Dockerfile fi # Build the dependencies - - docker run --dns=1.1.1.1 --rm -v "$PWD":/usr/src/app -w /usr/src/app node:10 bash -c "apt update && apt install automake autoconf libtool dpkg nasm libpng16-16 && npm install --verbose && npm run prod" + - docker run --dns=1.1.1.1 --rm -v "$PWD":/usr/src/app -w /usr/src/app node:10 bash -c "apt -y update && apt -y install automake autoconf libtool dpkg nasm libpng16-16 && npm install --verbose && npm run prod" - docker run --dns=1.1.1.1 --rm -v $(pwd):/app composer/composer:latest install - docker pull $CI_APPLICATION_REPOSITORY:latest || true - |