diff --git a/Dockerfile b/Dockerfile index 800b88d..c870624 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10-slim WORKDIR /usr/src/app COPY requirements.txt ./ -COPY main.py ./ +COPY . . RUN ls RUN pip install --no-cache-dir -r requirements.txt