first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled

This commit is contained in:
2025-09-06 16:08:15 +08:00
commit 63285f61aa
2624 changed files with 88491 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
FROM vulhub/java:8u172-jdk
LABEL maintainer="phithon <root@leavesongs.com>"
RUN set -ex \
&& echo "deb http://archive.debian.org/debian stretch main contrib non-free" > /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends python3 libfindbin-libs-perl
RUN set -ex \
&& mkdir -p /opt/druid \
&& wget -qO- https://archive.apache.org/dist/druid/25.0.0/apache-druid-25.0.0-bin.tar.gz | tar xz --strip-components 1 -C /opt/druid \
&& cd /opt/druid \
# fix typo <https://github.com/apache/druid/pull/13657>
&& sed -i 's|mm_task_java_opts_property|mm_task_java_opts_prop|' bin/start-druid-main.py
EXPOSE 8888
WORKDIR /opt/druid
CMD [ "/opt/druid/bin/start-druid", "-c", "conf/druid/single-server/nano-quickstart" ]