This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #438 from oshied/historical-gaia
Update go versions and create a 1.18 build tree
- Loading branch information
Showing
8 changed files
with
66 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM ghcr.io/oshied/base-build:bionic as bionic | ||
ARG name="base-go1.18" | ||
ARG summary="Base build image for go 1.18.x built on-top of ubuntu Bionic" | ||
LABEL description="${summary}" \ | ||
maintainer="cloudnull.io <kevin@cloudnull.com>" \ | ||
app.kubernetes.io/name="${name}" \ | ||
org.opencontainers.image.title="${name}" \ | ||
org.opencontainers.artifact.description="${summary}" \ | ||
org.opencontainers.image.url="https://github.com/oshied/protocol-forge" \ | ||
org.opencontainers.image.authors="kevin@cloudnull.com" \ | ||
org.opencontainers.image.vendor="cloudnull.io" \ | ||
org.opencontainers.image.description="${summary}" | ||
ARG GO_URL=https://go.dev/dl/go1.18.10.linux-amd64.tar.gz | ||
RUN rm -rf /usr/local/go | ||
RUN curl -L "$GO_URL" -o /tmp/go-linux-amd64.tar.gz | ||
RUN tar -C /usr/local -xzf /tmp/go-linux-amd64.tar.gz | ||
ENV PATH="$PATH:/usr/local/go/bin" | ||
|
||
FROM ghcr.io/oshied/base-build:focal as focal | ||
ARG name="base-go1.18" | ||
ARG summary="Base build image for go 1.18.x built on-top of ubuntu Focal" | ||
LABEL description="${summary}" \ | ||
maintainer="cloudnull.io <kevin@cloudnull.com>" \ | ||
app.kubernetes.io/name="${name}" \ | ||
org.opencontainers.image.title="${name}" \ | ||
org.opencontainers.artifact.description="${summary}" \ | ||
org.opencontainers.image.url="https://github.com/oshied/protocol-forge" \ | ||
org.opencontainers.image.authors="kevin@cloudnull.com" \ | ||
org.opencontainers.image.vendor="cloudnull.io" \ | ||
org.opencontainers.image.description="${summary}" | ||
ARG GO_URL=https://go.dev/dl/go1.18.10.linux-amd64.tar.gz | ||
RUN rm -rf /usr/local/go | ||
RUN curl -L "$GO_URL" -o /tmp/go-linux-amd64.tar.gz | ||
RUN tar -C /usr/local -xzf /tmp/go-linux-amd64.tar.gz | ||
ENV PATH="$PATH:/usr/local/go/bin" | ||
|
||
FROM ghcr.io/oshied/base-build:jammy as jammy | ||
ARG name="base-go1.18" | ||
ARG summary="Base build image for go 1.18.x built on-top of ubuntu Jammy" | ||
LABEL description="${summary}" \ | ||
maintainer="cloudnull.io <kevin@cloudnull.com>" \ | ||
app.kubernetes.io/name="${name}" \ | ||
org.opencontainers.image.title="${name}" \ | ||
org.opencontainers.artifact.description="${summary}" \ | ||
org.opencontainers.image.url="https://github.com/oshied/protocol-forge" \ | ||
org.opencontainers.image.authors="kevin@cloudnull.com" \ | ||
org.opencontainers.image.vendor="cloudnull.io" \ | ||
org.opencontainers.image.description="${summary}" | ||
ARG GO_URL=https://go.dev/dl/go1.18.10.linux-amd64.tar.gz | ||
RUN rm -rf /usr/local/go | ||
RUN curl -L "$GO_URL" -o /tmp/go-linux-amd64.tar.gz | ||
RUN tar -C /usr/local -xzf /tmp/go-linux-amd64.tar.gz | ||
ENV PATH="$PATH:/usr/local/go/bin" |
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 @@ | ||
# Base container for go lang 1.18 |
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,3 @@ | ||
bionic | ||
focal | ||
jammy |
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 @@ | ||
1.18.10 |
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 +1 @@ | ||
1.19.7 | ||
1.19.8 |
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 +1 @@ | ||
1.20.2 | ||
1.20.3 |