-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1373 from atc0005/i1372-add-go1.22-mirror-image
Add Go 1.22 mirror img, fix STABLE/OLDSTABLE tags
- Loading branch information
Showing
2 changed files
with
61 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 2020 Adam Chalkley | ||
# | ||
# https://github.com/atc0005/go-ci | ||
# | ||
# Licensed under the MIT License. See LICENSE file in the project root for | ||
# full license information. | ||
|
||
# https://hub.docker.com/_/golang | ||
|
||
FROM amd64/golang:1.22.0-bookworm | ||
|
||
# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package | ||
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci" | ||
|
||
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys | ||
LABEL org.opencontainers.image.documentation="https://github.com/atc0005/go-ci" | ||
LABEL org.opencontainers.image.url="https://github.com/atc0005/go-ci" | ||
LABEL org.opencontainers.image.title="go-ci-mirror-build-go1.22" | ||
LABEL org.opencontainers.image.description="Docker image intended to mirror \ | ||
latest upstream golang image for the Go 1.22 series. Used by \ | ||
Makefile-driven test, linting and build tasks." | ||
LABEL org.opencontainers.image.authors="Adam Chalkley (github.com/atc0005)" | ||
|
||
# Explicitly disable automatic fetching of Go toolchains newer than the | ||
# version explicitly provided by this container image. | ||
# | ||
# https://github.com/atc0005/go-ci/issues/1188 | ||
ENV GOTOOLCHAIN="local" |