diff --git a/Dockerfile b/Dockerfile index 62ec62e..a2fc446 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,11 @@ FROM python:3.11-slim-bullseye WORKDIR /app/ - COPY requirements.txt . - RUN pip install -r requirements.txt --no-cache-dir - RUN playwright install chromium - RUN playwright install-deps COPY . . - ENTRYPOINT ["python", "main.py"] - CMD [ "start" ] \ No newline at end of file