pgsql is being a pain

This commit is contained in:
2024-12-15 16:06:30 +02:00
parent 3483ff9213
commit aa90dd7d13

View File

@@ -55,7 +55,8 @@ jobs:
FROM python:3.11-slim-buster
RUN apt-get update && apt-get install -y python3-dev
WORKDIR /src
COPY . /src
COPY requirements.txt /src/requirements.txt
COPY app /src/app
RUN python -m pip install --upgrade pip \
&& pip install -r /src/requirements.txt \
&& cd /src/app \