Skip to content
Open
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 docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:25.1-alpine AS ui
FROM node:25.5-alpine AS ui
# install packages and ensure all packages are up-to-date
RUN apk update && apk upgrade && \
rm -rf /var/cache/apk/*
Expand All @@ -11,7 +11,7 @@ COPY ui2/ ./
RUN yarn install && \
yarn build

FROM python:3.14.0-alpine3.22 AS app
FROM python:3.14.2-alpine3.22 AS app
# install packages and ensure all packages are up-to-date
RUN apk update && \
apk upgrade && \
Expand Down