Обновить Dockerfile
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
soaska 2024-01-29 13:53:49 +03:00
parent ceca7a77e5
commit e032032325

View File

@ -5,13 +5,10 @@ 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" ]