Skip to content
Closed
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN npm ci
RUN npm run compile


FROM python:3.14.1-alpine3.21 AS python_base
FROM python:3.15.0a2-alpine3.21 AS python_base

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand All @@ -33,7 +33,7 @@ RUN pip install poetry
RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR

# Alpine doesn't support playwright
FROM python:3.14.1-slim AS development
FROM python:3.15.0a2-slim AS development

ARG UID=1000
ENV USER=app
Expand Down
Loading