[info=6e8f1b67ec45b77499e38dd9cb6d5b12]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/golang-unstable-image?expand=0&rev=7
This commit is contained in:
Dan Čermák 2024-01-29 09:20:31 +00:00 committed by Git OBS Bridge
parent f0f93fb318
commit 83d077ccba
4 changed files with 36 additions and 8 deletions

View File

@ -1,8 +1,23 @@
# SPDX-License-Identifier: MIT
# Copyright (c) 2024 SUSE LLC
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon.
# The content of THIS FILE IS AUTOGENERATED and should not be manually modified.
# It is maintained by the BCI team and generated by
# https://github.com/SUSE/BCI-dockerfile-generator
# Please submit bugfixes or comments via https://bugs.opensuse.org/
# You can contact the BCI team via https://github.com/SUSE/bci/discussions
#!BuildTag: opensuse/bci/golang:unstable
#!BuildTag: opensuse/bci/golang:unstable-%RELEASE%
#!BuildTag: opensuse/bci/golang:1.21
#!BuildTag: opensuse/bci/golang:1.21-%RELEASE%
#!BuildTag: opensuse/bci/golang:1.22
#!BuildTag: opensuse/bci/golang:1.22-%RELEASE%
FROM opensuse/tumbleweed:latest
@ -10,22 +25,27 @@ MAINTAINER openSUSE (https://www.opensuse.org/)
# Define labels according to https://en.opensuse.org/Building_derived_containers
# labelprefix=org.opensuse.bci.golang
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI Golang 1.21"
LABEL org.opencontainers.image.description="Golang 1.21 container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.version="1.21"
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI Go 1.22 development"
LABEL org.opencontainers.image.description="Go 1.22 development container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.version="1.22"
LABEL org.opencontainers.image.url="https://www.opensuse.org"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="openSUSE Project"
LABEL org.opencontainers.image.source="%SOURCEURL%"
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/golang:1.21-%RELEASE%"
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/golang-unstable-image/README.md"
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/golang:1.22-%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime"
LABEL org.opensuse.release-stage="released"
# endlabelprefix
RUN set -euo pipefail; zypper -n in --no-recommends go1.21 go1.21-doc go1.21-race make git-core; zypper -n clean; rm -rf /var/log/*
RUN set -euo pipefail; zypper -n in --no-recommends go1.22 go1.22-doc make git-core; zypper -n clean; rm -rf /var/log/*
ENV GOLANG_VERSION="%%golang_version%%"
ENV GOPATH="/go"
ENV PATH="/go/bin:/usr/local/go/bin:/root/go/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# only available on go's tsan_arch architectures
#!ArchExclusiveLine x86_64 aarch64 s390x ppc64le
RUN set -euo pipefail; if zypper -n install go1.22-race; then zypper -n clean; rm -rf /var/log/*; fi

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# The openSUSE Tumbleweed BCI Go 1.22 development Container image
Go 1.22 development container based on the openSUSE Tumbleweed Base Container Image.

View File

@ -4,6 +4,6 @@
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%golang_version%%</param>
<param name="package">go1.21</param>
<param name="package">go1.22</param>
</service>
</services>

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jan 29 09:18:52 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- switch unstable image to 1.22
-------------------------------------------------------------------
Tue Aug 8 06:51:38 UTC 2023 - Dirk Mueller <dmueller@suse.com>