Skip to content

Commit a63dbb0

Browse files
committed
docs: rewrite root and MethodD README for demo
1 parent a7d0547 commit a63dbb0

File tree

4 files changed

+413
-470
lines changed

4 files changed

+413
-470
lines changed

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)