Use dhi.io base images

This commit is contained in:
2026-02-19 22:14:54 -05:00
parent f0f175fb64
commit 1769127342
3 changed files with 16 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
# syntax=docker/dockerfile:1.21
FROM cgr.dev/chainguard/go:latest AS build
FROM dhi.io/golang:1.26-debian13-dev AS build
WORKDIR /src
@@ -7,7 +6,7 @@ COPY . /src
RUN CGO_ENABLED=0 go build -o backend .
FROM cgr.dev/chainguard/static:latest
FROM dhi.io/static:20251003-musl-alpine3.23
COPY --from=build /src/backend /backend