diff --git a/Dockerfile b/Dockerfile index 5c5dc0e4c2..62a50eac2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ # worry about Docker unless the build/run process changes. # Build stage -FROM node:24-alpine AS build +FROM node:24.14.1-alpine3.22 AS build # Install build dependencies RUN apk add --no-cache git python3 make g++ \ @@ -53,7 +53,7 @@ RUN npm cache clean --force && \ RUN cd src/gui && npm run build && cd - # Production stage -FROM node:24-alpine +FROM node:24.14.1-alpine3.22 # Set labels LABEL repo="https://github.com/HeyPuter/puter"