Skip to content
Merged
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
Expand Up @@ -7,7 +7,7 @@
# This stage picks the correct pre-built binary for TARGETARCH /
# TARGETVARIANT — no `go build`, no `bun install`, no `templ generate`
# happens inside Docker.
FROM alpine:3.23 AS binary-selector
FROM alpine:3.23.4 AS binary-selector

ARG TARGETARCH
ARG TARGETVARIANT
Expand All @@ -27,7 +27,7 @@ RUN set -eux; \
# Used by compose.yml's ldap-manager-dev / ldap-manager-test services.
# Not part of the release pipeline — `docker buildx build --target=dev`
# only locally. Source code is bind-mounted at runtime.
FROM golang:1.26.3-alpine AS dev
FROM golang:1.26.4-alpine AS dev

SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
WORKDIR /app
Expand Down
Loading