diff --git a/Dockerfile b/Dockerfile index 3e952e1..dcad25b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,6 @@ RUN echo 'APT::Install-Recommends "0";' | tee -a /etc/apt/apt.conf.d/01norecomme apt-get update && apt-get upgrade -y && apt-get install --no-install-recommends -y ca-certificates tzdata tini && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ - playwright install && \ - playwright install-deps + playwright install --with-deps chromium COPY app.py /usr/local/bin/app.py ENTRYPOINT ["tini", "--", "app.py"]