Update wrapper/dockerfile

This commit is contained in:
frarol96 2025-08-24 16:30:20 +00:00
parent c096c87e6a
commit 0ac94d7cfe

View File

@ -25,7 +25,9 @@ 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 (use the wrapper) ----
# ---- bring wrapper in ----
COPY wrapper.py /app/wrapper.py
COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
ENTRYPOINT ["/app/start.sh"]