This commit is contained in:
Sidney Marvin Fricke
2026-06-24 12:00:49 +02:00
parent 68c418400e
commit 5d6bd16d8d
3 changed files with 74 additions and 22 deletions
-17
View File
@@ -1,17 +0,0 @@
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"]