From 3ac6d2a9d7da5a8e74cca5c85745cd3c3f63ebab Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 06:22:35 -0500 Subject: [PATCH] Rectified missing pg_config --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24baa97..7986fc9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,10 @@ default: - image: python:3.10 + image: python:3.10-alphine3.14 before_script: + - apk add --no-cache postgresql-libs + - apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev - python3 -m pip install -r requirements.txt + - apk --purge del .build-deps stages: # List of stages for jobs, and their order of execution - build