-
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.
Add Go 1.22 mirror img, fix STABLE/OLDSTABLE tags
- add Go 1.22 series mirror image Dockerfile - update Makefile - move Go 1.20 mirror build image to legacy section - set Go 1.21 mirror build image as "olstable" tag - add entry to build Go 1.22 series mirror image - set Go 1.22 mirror build image as "stable" tag refs GH-1372
- 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" |