From b51f6c4c84d796b265755e1a56cc77f7b7c78e2d Mon Sep 17 00:00:00 2001 From: Wei Hong Date: Sun, 7 Jun 2026 11:39:54 +0800 Subject: [PATCH] Update dockerfile. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 082e455..c0aaac1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.13-slim -WORKDIR /app/data +WORKDIR /app COPY requirements.txt . @@ -8,4 +8,4 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -CMD ["python", "/main.py"] \ No newline at end of file +CMD ["python", "main.py"] \ No newline at end of file