From b27c5d99cac3b072a556c41f5e5b86d8dbb48391 Mon Sep 17 00:00:00 2001 From: BhEaN <bhean@vandalsweb.com> Date: Mon, 7 Sep 2020 21:32:37 +0200 Subject: [PATCH] Use Debian instead Alpine in CI/CD pipeline --- .gitlab-ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4f37e4b..5f5b6a6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,10 +17,7 @@ variables: ANSIBLE_CMD: ".venv/bin/ansible-playbook" image: - name: python:3.8-alpine - entrypoint: - - "/usr/bin/env" - - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + name: debian:buster-slim cache: paths: @@ -33,7 +30,7 @@ stages: - deploy before_script: - - apk add --update gcc libc-dev libffi-dev openssl-dev openssh-client git + - apt update && apt install -y git python3 python3-venv python3-setuptools build: stage: build -- GitLab