We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ada6f commit aa21f0eCopy full SHA for aa21f0e
1 file changed
Dockerfile
@@ -2,18 +2,18 @@ FROM python:3.12-slim-bookworm
2
3
WORKDIR /usr/src/app
4
5
-# RUN apt-get update && apt-get install -y --no-install-recommends \
6
-# build-essential \
7
-# gcc \
8
-# pkg-config \
9
-# default-libmysqlclient-dev \
10
-# libssl-dev \
11
-# libffi-dev \
12
-# python3-dev \
13
-# ca-certificates \
14
-# && rm -rf /var/lib/apt/lists/*
15
-
16
-# COPY requirements.txt .
+RUN apt-get update && apt-get install -y --no-install-recommends \
+ build-essential \
+ gcc \
+ pkg-config \
+ default-libmysqlclient-dev \
+ libssl-dev \
+ libffi-dev \
+ python3-dev \
+ ca-certificates \
+ && rm -rf /var/lib/apt/lists/*
+
+COPY requirements.txt .
17
RUN pip install --no-cache-dir -r requirements.txt
18
19
COPY --chown=nobody:nogroup . .
0 commit comments