Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ WORKDIR /app
COPY pyproject.toml uv.lock ./

# Install dependencies
RUN uv sync
ENV UV_PROJECT_ENVIRONMENT="/usr/local/"
RUN uv sync --locked --no-dev
# Must call from the root directory because uv does not add playwright to path
RUN /app/.venv/bin/playwright install-deps chromium
RUN /app/.venv/bin/playwright install chromium
RUN playwright install-deps chromium
RUN playwright install chromium


# Copy project files
Expand Down