7.4.0-debian-9-r0 release

This commit is contained in:
Bitnami Bot
2019-10-11 14:08:22 +00:00
parent 033643a82c
commit 2704ef3721
9 changed files with 518 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
FROM bitnami/minideb-extras-base:stretch-r376
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-9" \
OS_NAME="linux"
# Install required system packages and dependencies
RUN install_packages libc6 libgcc1 zlib1g
RUN . ./libcomponent.sh && component_unpack "logstash" "7.4.0-0" --checksum 832ad4a041ba2c0c20a42f91349801b315b97943a4e5288c1aa55f20d23f1599
RUN . ./libcomponent.sh && component_unpack "java" "1.8.222-1" --checksum 373c9f3d2943b9ff653fc0e7c69b1d54a75807726691a09190648808500b8253
COPY rootfs /
RUN /postunpack.sh
ENV BITNAMI_APP_NAME="logstash" \
BITNAMI_IMAGE_VERSION="7.4.0-debian-9-r0" \
PATH="/opt/bitnami/logstash/bin:/opt/bitnami/java/bin:$PATH"
EXPOSE 8080
WORKDIR /opt/bitnami/logstash
USER 1001
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "/run.sh" ]