Skip to content
Merged
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 @@
# 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++ \
Expand Down Expand Up @@ -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"
Expand Down
Loading