Update wrapper/dockerfile

This commit is contained in:
frarol96 2025-08-24 16:33:37 +00:00
parent 842261d5d5
commit 8f7be81be6

View File

@ -9,25 +9,26 @@ RUN apt-get update && \
RUN pip install --no-cache-dir pip setuptools wheel RUN pip install --no-cache-dir pip setuptools wheel
# ---- (optional) Playwright runtime libs ---- # ---- (optional) Playwright OS libs ----
ARG WITH_PLAYWRIGHT=1 ARG WITH_PLAYWRIGHT=1
RUN if [ "$WITH_PLAYWRIGHT" = "1" ]; then \ RUN if [ "$WITH_PLAYWRIGHT" = "1" ]; then \
set -eux; \ set -eux; \
apt-get update && apt-get install -y --no-install-recommends \ 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 \ libgtk-3-0 libgdk-pixbuf-2.0-0 libpangocairo-1.0-0 libcairo-gobject2 libxcursor1 \
libnss3 libnspr4 libdrm2 libgbm1 libxss1 libxshmfence1 libx11-xcb1 \ libnss3 libnspr4 libdrm2 libgbm1 libxss1 libxshmfence1 libx11-xcb1 \
libxcomposite1 libxdamage1 libxrandr2 libxtst6 libxfixes3 libxext6 libxi6 \ libxcomposite1 libxdamage1 libxrandr2 libxtst6 libxfixes3 libxext6 libxi6 \
libxkbcommon0 libpango-1.0-0 libasound2 xdg-utils fonts-liberation wget \ libxkbcommon0 libpango-1.0-0 libasound2 xdg-utils fonts-liberation wget \
&& rm -rf /var/lib/apt/lists/*; \ && rm -rf /var/lib/apt/lists/*; \
fi fi
# ---- install wrapper python deps (includes playwright) ---- # ---- install wrapper python deps (includes playwright) ----
# keep this separate from repo requirements; the wrapper must have playwright even if repo doesn't list it
COPY requirements.txt /app/requirements-wrapper.txt COPY requirements.txt /app/requirements-wrapper.txt
RUN pip install --no-cache-dir -r /app/requirements-wrapper.txt RUN pip install --no-cache-dir -r /app/requirements-wrapper.txt
# ---- bring wrapper in ---- # ---- wrapper files ----
COPY wrapper.py /app/wrapper.py COPY wrapper.py /app/wrapper.py
COPY start.sh /app/start.sh COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh RUN chmod +x /app/start.sh
ENTRYPOINT ["/app/start.sh"] ENTRYPOINT ["/app/start.sh"]