Skip to content
Draft
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 server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.7-alpine3.23 AS server-builder
FROM golang:1.26.2-alpine3.23 AS server-builder

RUN apk upgrade --no-cache && \
apk add --no-cache \
Expand All @@ -15,7 +15,7 @@ COPY . ./

RUN make build-server

FROM golang:1.25.7-alpine3.23 AS dockerize-builder
FROM golang:1.26.2-alpine3.23 AS dockerize-builder

ARG DOCKERIZE_VERSION=v0.10.1
RUN go install github.com/jwilder/dockerize@${DOCKERIZE_VERSION} && \
Expand Down
2 changes: 2 additions & 0 deletions server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/temporalio/ui-server/v2

go 1.24.11

toolchain go1.26.2

require (
github.com/Masterminds/sprig/v3 v3.3.0
github.com/coreos/go-oidc/v3 v3.11.0
Expand Down
Loading