Files
test/Dockerfile
T
2026-01-14 23:46:24 +00:00

5 lines
104 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]