From ff218c0a98a273f3e5dcaa17a4604e91b77349bd Mon Sep 17 00:00:00 2001 From: frarol96 Date: Sat, 16 Aug 2025 06:57:58 +0000 Subject: [PATCH] Update wrapper/dockerfile --- wrapper/dockerfile | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/wrapper/dockerfile b/wrapper/dockerfile index 4224b83..5def26e 100644 --- a/wrapper/dockerfile +++ b/wrapper/dockerfile @@ -1,27 +1,27 @@ FROM python:3.11-slim -ARG WITH_PLAYWRIGHT=0 - WORKDIR /app -# git + CA, and tools used by playwright bootstrap when enabled +# ---- base utils ---- RUN apt-get update && \ - apt-get install -y --no-install-recommends git ca-certificates curl && \ + apt-get install -y --no-install-recommends git ca-certificates && \ rm -rf /var/lib/apt/lists/* -# Faster, cleaner pip RUN pip install --no-cache-dir pip setuptools wheel -# Optional Playwright (driven by build-arg) -ARG WITH_PLAYWRIGHT=0 +# ---- (optional) Playwright runtime libs ---- +ARG WITH_PLAYWRIGHT=1 RUN if [ "$WITH_PLAYWRIGHT" = "1" ]; then \ - pip install --no-cache-dir playwright==1.45.0 && \ - python -m playwright install --with-deps chromium ; \ + set -eux; \ + apt-get update && apt-get install -y --no-install-recommends \ + libgtk-3-0 libgdk-pixbuf-2.0-0 libpangocairo-1.0-0 libcairo-gobject2 libxcursor1 \ + libnss3 libnspr4 libdrm2 libgbm1 libxss1 libxshmfence1 libx11-xcb1 \ + libxcomposite1 libxdamage1 libxrandr2 libxtst6 libxfixes3 libxext6 libxi6 \ + libxkbcommon0 libpango-1.0-0 libasound2 xdg-utils fonts-liberation wget \ + && rm -rf /var/lib/apt/lists/*; \ fi -# Wrapper entrypoint -COPY start.sh /start.sh -COPY wrapper.py /app/wrapper.py -RUN chmod +x /start.sh - -ENTRYPOINT ["/start.sh"] +# ---- wrapper entrypoint ---- +COPY docker-entrypoint.sh /app/docker-entrypoint.sh +RUN chmod +x /app/docker-entrypoint.sh +ENTRYPOINT ["/app/docker-entrypoint.sh"]