This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base docker images to use Debian 12 distroless base image (#928)
Instead of chasing ever-changing commit hashes, just use the apppropriate tag for the distroless image. This aligns things to how `teleport` is handled. Additionally, standardize on Debian 12 for everything (instead of a mix of 11 and 12). Also, use `static` over `base`. This means no `glibc` or `libssl`, which should be fine for these plugins.
- Loading branch information
Showing
3 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG GO_VER | ||
FROM golang:${GO_VER}-bullseye | ||
FROM golang:${GO_VER}-bookworm | ||
|
||
ARG UID | ||
ARG GID | ||
|