-
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.
Mirror upstream golang image with light changes
- add new Dockerfile to build lightly touched variation of upstream `golang` image - add additional metadata tying the image to the atc0005/go-ci repo - update dependabot config to monitor the new Dockerfile for image version updates - update README to cover new image - update Makefile to handle building and uploading new image refs GH-507 refs atc0005/send2teams#211 refs atc0005/send2teams#210
- Loading branch information
Showing
4 changed files
with
69 additions
and
0 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
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,22 @@ | ||
# 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 golang:1.17.6 | ||
|
||
# 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-stable-upstream-mirror" | ||
LABEL org.opencontainers.image.description="Docker image intended to mirror \ | ||
current upstream stable golang image for Makefile-driven test, linting \ | ||
and build tasks. Very few modifications are made to the original image." | ||
LABEL org.opencontainers.image.authors="Adam Chalkley (github.com/atc0005)" |