diff --git a/Dockerfile b/Dockerfile index 5721641..2f4ce25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]