zabbix-docker/Dockerfiles/build-base/rhel/Dockerfile
2021-10-16 11:49:19 -04:00

98 lines
3.5 KiB
Docker

# syntax=docker/dockerfile:1
FROM registry.access.redhat.com/ubi8/ubi-minimal
ARG MAJOR_VERSION=6.0
ARG RELEASE=
ARG ZBX_VERSION=${MAJOR_VERSION}
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} \
PATH=/usr/local/go/bin:$PATH
LABEL description="Prepared environment to build Zabbix components" \
maintainer="alexey.pustovalov@zabbix.com" \
name="zabbix/zabbix-build-base-trunk" \
release="${RELEASE}" \
summary="Zabbix build base" \
url="https://www.zabbix.com/" \
vendor="Zabbix LLC" \
version="${MAJOR_VERSION}" \
io.k8s.description="Prepared environment to build Zabbix components" \
io.k8s.display-name="Zabbix build base" \
io.openshift.expose-services="" \
io.openshift.tags="zabbix,build" \
org.label-schema.description="Prepared environment to build Zabbix components" \
org.label-schema.name="zabbix-build-base-rhel" \
org.label-schema.url="https://zabbix.com/" \
org.label-schema.vcs-ref="${VCS_REF}" \
org.label-schema.vendor="Zabbix LLC"
COPY ["licenses", "/licenses"]
RUN set -eux && \
INSTALL_PKGS="autoconf \
automake \
bash \
gcc \
pcre-devel \
libcurl-devel \
libevent-devel \
libssh-devel \
libxml2-devel \
openssl-devel \
openldap-devel \
make \
mysql-devel \
net-snmp-devel \
OpenIPMI-devel \
openldap-devel \
sqlite-devel \
postgresql-devel \
java-1.8.0-openjdk-devel \
git \
wget \
tar \
gettext \
unixODBC-devel" && \
microdnf -y module enable mysql && \
microdnf -y install \
--disablerepo "*" \
--enablerepo "ubi-8-baseos" \
--enablerepo "ubi-8-appstream" \
--enablerepo "rhel-8-for-x86_64-baseos-rpms" \
--enablerepo "rhel-8-for-x86_64-appstream-rpms" \
--enablerepo "codeready-builder-for-rhel-8-x86_64-rpms" \
--setopt=install_weak_deps=0 \
--best \
--setopt=tsflags=nodocs \
${INSTALL_PKGS} && \
microdnf -y clean all && \
ARCH_SUFFIX="$(arch)"; \
case "$ARCH_SUFFIX" in \
x86_64) \
url='https://dl.google.com/go/go1.17.2.linux-amd64.tar.gz'; \
sha256='f242a9db6a0ad1846de7b6d94d507915d14062660616a61ef7c808a76e4f1676'; \
;; \
aarch64) \
url='https://dl.google.com/go/go1.17.2.linux-arm64.tar.gz'; \
sha256='a5a43c9cdabdb9f371d56951b14290eba8ce2f9b0db48fb5fc657943984fd4fc'; \
;; \
ppc64le) \
url='https://golang.org/dl/go1.17.2.linux-ppc64le.tar.gz'; \
sha256='12e2dc7e0ffeebe77083f267ef6705fec1621cdf2ed6489b3af04a13597ed68d'; \
;; \
*) echo "Unknown ARCH_SUFFIX=${ARCH_SUFFIX-}"; exit 1 ;; \
esac; \
wget -O go.tgz.asc "$url.asc" && \
wget -O go.tgz "$url" --progress=dot:giga && \
echo "$sha256 *go.tgz" | sha256sum -c - && \
GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; \
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 'EB4C 1BFD 4F04 2F6D DDCC EC91 7721 F63B D38B 4796' && \
gpg --batch --verify go.tgz.asc go.tgz && \
gpgconf --kill all && \
rm -rf "$GNUPGHOME" go.tgz.asc && \
tar -C /usr/local -xzf go.tgz && \
rm go.tgz && \
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki