Fix dockerfile copy commands

This commit is contained in:
root
2026-09-08 16:47:19 +00:00
parent bea21f2b87
commit 75920994e8
+3 -3
View File
@@ -2,12 +2,12 @@ FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY..
COPY . .
EXPOSE 8000
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]