Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 14 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Python
**/__pycache__
.venv

# Django
**/.env
**/*.sqlite3
**/staticfiles/

# Terraform
infrastructure

# Docs
docs
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ ENV POETRY_NO_INTERACTION=1 \
COPY pyproject.toml poetry.lock ./
RUN pip install poetry
RUN poetry install --no-root
RUN poetry run playwright install
RUN poetry run playwright install --with-deps chromium

USER ${USER}
COPY --chown=${USER}:${USER} . .
Expand Down
Loading