We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7d0547 commit a63dbb0Copy full SHA for a63dbb0
Dockerfile
@@ -0,0 +1,20 @@
1
+FROM python:3.11-slim
2
+
3
+ENV PYTHONDONTWRITEBYTECODE=1
4
+ENV PYTHONUNBUFFERED=1
5
6
+WORKDIR /workspace
7
8
+RUN apt-get update && apt-get install -y --no-install-recommends \
9
+ build-essential \
10
+ gcc \
11
+ git \
12
+ curl \
13
+ && rm -rf /var/lib/apt/lists/*
14
15
+COPY MethodD/requirements.txt /tmp/requirements.txt
16
+RUN pip install --no-cache-dir -r /tmp/requirements.txt
17
18
+COPY . /workspace
19
20
+CMD ["/bin/bash"]
0 commit comments