Rectified missing pg_config

This commit is contained in:
Price Hiller 2021-10-06 06:22:35 -05:00
parent 4e3af6f357
commit 3ac6d2a9d7

View File

@ -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