no base root passing

This commit is contained in:
Matthias Bisping 2022-03-23 16:13:05 +01:00
parent dd6fc17a02
commit 30bbb8fe6e
2 changed files with 2 additions and 2 deletions

View File

@ -16,4 +16,4 @@ COPY . .
RUN python3 -m pip install -e .
RUN python3 -m pip install -r requirements.txt
CMD coverage run -m pytest pyinfra/test/ -x && coverage report -m && coverage xml
CMD coverage run -m pytest pyinfra/test/ -x && coverage report -m && coverage xml

View File

@ -1,5 +1,5 @@
echo "${bamboo_nexus_password}" | docker login --username "${bamboo_nexus_user}" --password-stdin nexus.iqser.com:5001
docker build -f Dockerfile_tests -t pyinfra-tests:dev . --build-arg BASE_ROOT=""
docker build -f Dockerfile_tests -t pyinfra-tests:dev .
docker tag pyinfra-tests:dev nexus.iqser.com:5001/red/pyinfra-tests:dev
docker push nexus.iqser.com:5001/red/pyinfra-tests:dev