centreon-plugins/.github/docker/packaging/Dockerfile.packaging-plugins-java-bookworm
sdepassio baf703598e
enh(as400): add ssl connection option (#5476)
Co-authored-by: garnier-quentin <garnier.quentin@gmail.com>
2025-03-05 17:25:13 +01:00

24 lines
374 B
Docker

ARG REGISTRY_URL
FROM ${REGISTRY_URL}/debian:bookworm
RUN bash -e <<EOF
apt-get update
apt-get install -y \
ca-certificates \
git \
maven=3.8.7-1 \
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