zabbix-docker/Dockerfiles/build-base/alpine/Dockerfile
Continuous Integration d7b0eab807 Zabbix v6.4.3 release
2023-05-30 16:19:31 +03:00

54 lines
1.6 KiB
Docker

# syntax=docker/dockerfile:1
FROM alpine:3.17
ARG MAJOR_VERSION=6.4
ARG ZBX_VERSION=${MAJOR_VERSION}.3
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} \
PATH=/usr/lib/jvm/default-jvm/bin:$PATH \
JAVA_HOME=/usr/lib/jvm/default-jvm
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
org.opencontainers.image.description="Zabbix build base image contains all required packages to build Zabbix images" \
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
org.opencontainers.image.licenses="GPL v2.0" \
org.opencontainers.image.title="Zabbix build base" \
org.opencontainers.image.url="https://zabbix.com/" \
org.opencontainers.image.vendor="Zabbix LLC" \
org.opencontainers.image.version="${ZBX_VERSION}"
RUN set -eux && \
INSTALL_PKGS="bash \
autoconf \
automake \
coreutils \
curl \
curl-dev \
libevent-dev \
libssh-dev \
sqlite-dev \
libmodbus-dev \
libxml2-dev \
mysql-dev \
net-snmp-dev \
openipmi-dev \
openldap-dev \
openssl-dev \
patch \
pcre2-dev \
postgresql-dev \
openjdk8 \
gettext \
git \
g++ \
go \
make \
openjdk8-jre-base \
unixodbc-dev" && \
apk add \
--no-cache \
--clean-protected \
${INSTALL_PKGS} && \
rm -rf /var/cache/apk/*