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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY ./ui/leafwiki-ui/ ./
RUN VITE_API_URL=/ npm run build

# Step 2: Backend + Build binary
FROM golang:1.25-alpine AS backend-build
FROM golang:1.26-alpine AS backend-build
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY ./ui/leafwiki-ui/ ./
RUN VITE_API_URL=/ npm run build

# Stage 2: Go backend build
FROM golang:1.25-alpine AS builder
FROM golang:1.26-alpine AS builder

ARG GOOS
ARG GOARCH
Expand Down
Loading