From f12308428645dc4785a301fd2b292f7624d3a89a Mon Sep 17 00:00:00 2001 From: frarol96 Date: Sun, 24 Aug 2025 16:19:17 +0000 Subject: [PATCH] Update wrapper/dockerfile --- wrapper/dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wrapper/dockerfile b/wrapper/dockerfile index 34c83ee..611ca70 100644 --- a/wrapper/dockerfile +++ b/wrapper/dockerfile @@ -25,7 +25,7 @@ RUN if [ "$WITH_PLAYWRIGHT" = "1" ]; then \ 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 -ENTRYPOINT ["/app/docker-entrypoint.sh"] +# ---- wrapper entrypoint (use the wrapper) ---- +COPY start.sh /app/start.sh +RUN chmod +x /app/start.sh +ENTRYPOINT ["/app/start.sh"]