2023-06-13 22:30:57 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2023-09-28 17:02:59 +02:00
|
|
|
|
2024-01-02 09:29:39 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2023-09-28 17:02:59 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2023-06-13 22:30:57 +02:00
|
|
|
#!BuildTag: opensuse/bci/golang:oldstable
|
2023-06-22 18:58:56 +02:00
|
|
|
#!BuildTag: opensuse/bci/golang:oldstable-2.%RELEASE%
|
2024-02-07 20:22:53 +01:00
|
|
|
#!BuildTag: opensuse/bci/golang:1.21
|
|
|
|
#!BuildTag: opensuse/bci/golang:1.21-2.%RELEASE%
|
2023-06-13 22:30:57 +02:00
|
|
|
|
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
|
|
|
MAINTAINER openSUSE (https://www.opensuse.org/)
|
|
|
|
|
|
|
|
# Define labels according to https://en.opensuse.org/Building_derived_containers
|
|
|
|
# labelprefix=org.opensuse.bci.golang
|
2024-02-07 20:22:53 +01:00
|
|
|
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI Go 1.21 development"
|
|
|
|
LABEL org.opencontainers.image.description="Go 1.21 development container based on the openSUSE Tumbleweed Base Container Image."
|
|
|
|
LABEL org.opencontainers.image.version="1.21"
|
2023-06-13 22:30:57 +02:00
|
|
|
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%"
|
2024-02-07 20:22:53 +01:00
|
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/golang:1.21-2.%RELEASE%"
|
2023-06-13 22:30:57 +02:00
|
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
|
|
|
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime"
|
|
|
|
LABEL org.opensuse.release-stage="released"
|
|
|
|
# endlabelprefix
|
2024-06-05 18:00:11 +02:00
|
|
|
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/golang-oldstable-image/README.md"
|
2023-06-13 22:30:57 +02:00
|
|
|
|
2024-04-12 14:15:29 +02:00
|
|
|
RUN set -euo pipefail; zypper -n in --no-recommends go1.21 go1.21-doc make git-core; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
2023-06-13 22:30:57 +02:00
|
|
|
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"
|
|
|
|
|
2023-09-06 19:06:17 +02:00
|
|
|
|
|
|
|
# only available on go's tsan_arch architectures
|
2024-04-17 11:32:42 +02:00
|
|
|
#!ArchExclusiveLine: x86_64 aarch64 s390x ppc64le
|
2024-02-07 20:22:53 +01:00
|
|
|
RUN set -euo pipefail; if zypper -n install go1.21-race; then zypper -n clean; rm -rf /var/log/*; fi
|