Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.
Open
Show file tree
Hide file tree
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
@@ -1,5 +1,5 @@
# Build stage
FROM node:25-alpine AS builder
FROM node:26-alpine AS builder

RUN npm install -g pnpm@9.0.0

Expand All @@ -19,7 +19,7 @@ RUN pnpm --filter @openclawworld/shared build && \
pnpm --filter @openclawworld/server build

# Production stage
FROM node:25-alpine AS production
FROM node:26-alpine AS production

RUN npm install -g pnpm@9.0.0

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:25-alpine
FROM node:26-alpine

RUN apk add --no-cache wget
RUN npm install -g pnpm@9.0.0
Expand Down
Loading