Update dockerfile.

This commit is contained in:
2026-06-07 11:39:54 +08:00
parent ed1dfb5e5c
commit b51f6c4c84
+2 -2
View File
@@ -1,6 +1,6 @@
FROM python:3.13-slim FROM python:3.13-slim
WORKDIR /app/data WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
@@ -8,4 +8,4 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . . COPY . .
CMD ["python", "/main.py"] CMD ["python", "main.py"]