2023-06-13 22:30:49 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2023-09-28 17:03:12 +02:00
|
|
|
|
2024-01-02 09:29:44 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2023-09-28 17:03:12 +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:49 +02:00
|
|
|
#!BuildTag: opensuse/bci/golang:stable
|
2023-06-22 18:59:04 +02:00
|
|
|
#!BuildTag: opensuse/bci/golang:stable-1.%RELEASE%
|
2024-02-07 20:23:02 +01:00
|
|
|
#!BuildTag: opensuse/bci/golang:1.22
|
|
|
|
#!BuildTag: opensuse/bci/golang:1.22-1.%RELEASE%
|
2023-06-13 22:30:49 +02:00
|
|
|
#!BuildTag: opensuse/bci/golang:latest
|
|
|
|
|
|
|
|
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:23:02 +01:00
|
|
|
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"
|
2023-06-13 22:30:49 +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-01-17 15:31:10 +01:00
|
|
|
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/golang-stable-image/README.md"
|
2024-02-07 20:23:02 +01:00
|
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/golang:1.22-1.%RELEASE%"
|
2023-06-13 22:30:49 +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-04-12 14:15:29 +02:00
|
|
|
RUN set -euo pipefail; zypper -n in --no-recommends go1.22 go1.22-doc make git-core; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
2023-06-13 22:30:49 +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
|
2023-09-08 14:28:29 +02:00
|
|
|
#!ArchExclusiveLine x86_64 aarch64 s390x ppc64le
|
2024-02-07 20:23:02 +01:00
|
|
|
RUN set -euo pipefail; if zypper -n install go1.22-race; then zypper -n clean; rm -rf /var/log/*; fi
|