File size: 239 Bytes
67c794b
 
dab8981
 
 
dfd2213
67c794b
 
dfd2213
1
2
3
4
5
6
7
8
9
FROM python:3.12-slim

RUN apt-get update && \
    apt-get install -y gcc g++ libpq-dev python3-dev libffi-dev build-essential

WORKDIR /home/user/app
COPY --chown=user requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt