Skip to content

Commit b2485a3

Browse files
committed
fix dockerfile
1 parent 6538ac0 commit b2485a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ENV PHP_TZ=UTC
1111

1212
# Multi-stage build: Build static assets
1313
# This allows us to not include Python within the final container
14-
FROM python:3.14-rc-bookworm AS python_builder
14+
FROM python:3.14-trixie AS python_builder
1515

1616
WORKDIR /usr/src/app
1717

@@ -27,7 +27,7 @@ RUN pip install --no-cache-dir -r requirements.txt && \
2727

2828
# Multi-stage build: Build static assets
2929
# This allows us to not include Node within the final container
30-
FROM node:20 AS node_builder
30+
FROM node:24 AS node_builder
3131

3232
RUN mkdir -p /app/dist
3333

0 commit comments

Comments
 (0)