From 640ab27d3ea19e5e9eae4a68dc671a21d4e239d4 Mon Sep 17 00:00:00 2001 From: brayn003 Date: Mon, 1 Apr 2024 05:31:59 +0530 Subject: [PATCH] fix: adding playwright deps for running browser --- server/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/Dockerfile b/server/Dockerfile index 7b18ebf..a24e8bd 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -19,7 +19,9 @@ ENV PATH="/app/.venv/bin:$PATH" COPY --from=deps /app/app app COPY --from=deps /app/.venv .venv COPY .env.example .env + RUN playwright install chromium +RUN playwright install-deps ENV UVICORN_PORT=8000 \ UVICORN_HOST=0.0.0.0