From dcff277d1a85ca26876693dc6f167b638795d443 Mon Sep 17 00:00:00 2001 From: frarol96 Date: Sun, 24 Aug 2025 16:09:41 +0000 Subject: [PATCH] Update wrapper/dockerfile --- wrapper/dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wrapper/dockerfile b/wrapper/dockerfile index 5def26e..34c83ee 100644 --- a/wrapper/dockerfile +++ b/wrapper/dockerfile @@ -18,9 +18,13 @@ RUN if [ "$WITH_PLAYWRIGHT" = "1" ]; then \ 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/*; \ + && rm -rf /var/lib/apt/lists/*; \ fi +# ---- install wrapper python deps (includes playwright) ---- +COPY requirements.txt /app/requirements-wrapper.txt +RUN pip install --no-cache-dir -r /app/requirements-wrapper.txt + # ---- wrapper entrypoint ---- COPY docker-entrypoint.sh /app/docker-entrypoint.sh RUN chmod +x /app/docker-entrypoint.sh