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 relay/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM node:20-alpine AS builder
FROM node:26-alpine AS builder
WORKDIR /app

COPY package.json package-lock.json* ./
Expand All @@ -9,7 +9,7 @@ COPY tsconfig.json ./
COPY src ./src
RUN npm run build

FROM node:20-alpine AS runtime
FROM node:26-alpine AS runtime
WORKDIR /app

# 非 root 用户运行,降低容器逃逸后的影响面
Expand Down
Loading