This commit is contained in:
Sidney Marvin Fricke
2026-06-24 11:48:08 +02:00
commit 68c418400e
5 changed files with 439 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.12-slim
# tools agents typically need in the PTY
RUN apt-get update && apt-get install -y --no-install-recommends \
bash curl wget git vim nano htop procps jq less unzip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 8000
CMD ["python", "-u", "main.py"]