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.
2 parents 20b0247 + c74688a commit 6abc77fCopy full SHA for 6abc77f
1 file changed
Dockerfile.web
@@ -2,6 +2,10 @@ FROM python:3.13-slim
2
3
WORKDIR /app
4
5
+RUN apt-get update && \
6
+ apt-get install -y --no-install-recommends build-essential && \
7
+ rm -rf /var/lib/apt/lists/*
8
+
9
COPY requirements.txt .
10
11
RUN pip install --no-cache-dir -r requirements.txt
0 commit comments