Files
ServerWind/Dockerfile
T
2026-06-07 11:33:52 +08:00

11 lines
159 B
Docker

FROM python:3.13-slim
WORKDIR /app/data
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "/app/main.py"]