We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3634c95 commit 13607feCopy full SHA for 13607fe
Dockerfile
@@ -1,6 +1,10 @@
1
-FROM python:3-slim
+FROM python:3.12-slim
2
ENV PYTHONBUFFERED=1
3
WORKDIR /code
4
+RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ libpq-dev \
6
+ gcc \
7
+ && rm -rf /var/lib/apt/lists/*
8
COPY requirements.txt /code/
9
RUN pip install --no-cache-dir -r requirements.txt
10
COPY . .
0 commit comments