diff --git a/Dockerfile b/Dockerfile index ed61a7c..99d446f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.9-slim WORKDIR /app -RUN pip install --no-cache-dir -r /app/requirements.txt COPY . . +RUN pip install --no-cache-dir -r /app/requirements.txt ENTRYPOINT [ "python", "-u", "/app/main.py" ] \ No newline at end of file