eljur/Dockerfile

11 lines
249 B
Docker
Raw Permalink Normal View History

2024-01-27 18:30:58 +00:00
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" ]