Skip to content
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
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ RUN curl -fsSL \
tar -xzf /tmp/ngrok.tgz -C /usr/local/bin ngrok && \
chmod 0755 /usr/local/bin/ngrok

FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder
ARG VERSION
# Patch Alpine base packages before building to avoid CVEs in the builder layer.
RUN apk upgrade --no-cache
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN cd dashboard && \
npm run build

# ── Stage 1: compile the Go binary ─────────────────────────────────────────
FROM --platform=linux/amd64 golang:1.26-alpine AS builder
FROM --platform=linux/amd64 golang:1.27-alpine AS builder
ARG VERSION
RUN apk upgrade --no-cache
WORKDIR /src
Expand Down