From d6c55dfb5eafee98d425ff9e664f0e2e33c16cd9 Mon Sep 17 00:00:00 2001 From: Anton Tetov <anton@tetov.se> Date: Thu, 7 Apr 2022 20:07:45 +0200 Subject: [PATCH] Actually, don't use -slim python image --- .gitlab-ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 616b34e..f07a8b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,17 +22,15 @@ default: tags: - docker-executor before_script: - - apt-get update - - apt install make git -y --no-install-recommends - pip install poetry - poetry --version - poetry config virtualenvs.in-project true - poetry install -vv - image: python:3.9-slim-bullseye + image: python:3.9-bullseye .test-template: stage: tests - image: "python:$PYTHON_VER-slim-bullseye" + image: "python:$PYTHON_VER-bullseye" script: make test # Quality jobs @@ -71,4 +69,4 @@ publish: - /^v(\d+\.)(\d+\.)(\d+)$/ script: - make build - - poetry publish -username=__token__ --password=$PYPI_TOKEN \ No newline at end of file + - poetry publish -username=__token__ --password=$PYPI_TOKEN -- GitLab