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 sources/packages/web/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# "builder" stage, based on Node.js, to build and compile the frontend.
FROM node:24.9.0-alpine3.22 AS builder
FROM node:25.1.0-alpine3.22 AS builder

# Application Port.
ENV PORT=8080
Expand All @@ -23,7 +23,7 @@ RUN sed 's/${PORT}/'"${PORT}"'/g' nginx/default.conf.dev.template > default.conf
RUN npm run build-local

# Get a nginx image to have only the compiled app in the resulting image.
FROM nginx:1.22 AS deployer
FROM nginx:1.29 AS deployer

RUN mkdir -p /opt/app-root/src \
&& mkdir -p /etc/nginx/conf.d
Expand Down
Loading