mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-31 01:24:35 +02:00
24 lines
374 B
Docker
24 lines
374 B
Docker
ARG REGISTRY_URL
|
|
|
|
FROM ${REGISTRY_URL}/debian:bullseye
|
|
|
|
RUN bash -e <<EOF
|
|
|
|
apt-get update
|
|
apt-get install -y \
|
|
ca-certificates \
|
|
git \
|
|
maven=3.6.3-5 \
|
|
openjdk-17-jdk \
|
|
zstd
|
|
|
|
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | tee /etc/apt/sources.list.d/goreleaser.list
|
|
|
|
apt-get update
|
|
apt-get install -y nfpm=2.41.0
|
|
|
|
apt-get clean all
|
|
|
|
EOF
|
|
|
|
WORKDIR /src |