2021-09-13 00:06:51 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2024-05-29 10:29:04 +02:00
|
|
|
FROM alpine:3.15
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-12 01:41:42 +02:00
|
|
|
ARG MAJOR_VERSION=5.0
|
2024-03-25 14:29:06 +01:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.42
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
2021-09-14 04:55:24 +02:00
|
|
|
PATH=/usr/lib/jvm/default-jvm/bin:$PATH \
|
2021-09-14 01:18:41 +02:00
|
|
|
JAVA_HOME=/usr/lib/jvm/default-jvm
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
2021-09-13 00:06:51 +02:00
|
|
|
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" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.licenses="GPL v2.0" \
|
|
|
|
org.opencontainers.image.title="Zabbix build base" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
2024-05-21 12:45:53 +02:00
|
|
|
org.opencontainers.image.vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2021-09-13 00:06:51 +02:00
|
|
|
|
|
|
|
RUN set -eux && \
|
2021-10-16 17:49:19 +02:00
|
|
|
INSTALL_PKGS="bash \
|
2021-09-13 00:06:51 +02:00
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
coreutils \
|
2023-03-14 13:15:10 +01:00
|
|
|
curl \
|
2021-09-13 00:06:51 +02:00
|
|
|
curl-dev \
|
|
|
|
libevent-dev \
|
|
|
|
libssh-dev \
|
|
|
|
sqlite-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
mysql-dev \
|
|
|
|
net-snmp-dev \
|
|
|
|
openipmi-dev \
|
|
|
|
openldap-dev \
|
2021-10-12 02:08:40 +02:00
|
|
|
openssl-dev \
|
2021-09-13 00:06:51 +02:00
|
|
|
pcre-dev \
|
|
|
|
postgresql-dev \
|
|
|
|
openjdk8 \
|
|
|
|
gettext \
|
|
|
|
git \
|
|
|
|
g++ \
|
|
|
|
make \
|
|
|
|
openjdk8-jre-base \
|
2021-10-16 17:49:19 +02:00
|
|
|
unixodbc-dev" && \
|
|
|
|
apk add \
|
|
|
|
--no-cache \
|
|
|
|
--clean-protected \
|
|
|
|
${INSTALL_PKGS} && \
|
2022-05-11 13:47:59 +02:00
|
|
|
apk add \
|
|
|
|
--no-cache \
|
|
|
|
--clean-protected \
|
2024-02-11 19:58:11 +01:00
|
|
|
--repository=https://dl-cdn.alpinelinux.org/alpine/edge/community \
|
2024-02-20 09:24:36 +01:00
|
|
|
go
|