File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,9 @@ ARG SPLUNK_BASE_IMAGE=base-debian-10
2020FROM ${SPLUNK_BASE_IMAGE}:latest as package
2121ARG SPLUNK_BUILD_URL
2222ENV SPLUNK_HOME=/opt/splunkforwarder
23- RUN echo "Downloading Splunk and validating the checksum at : ${SPLUNK_BUILD_URL}" \
23+ RUN echo "Downloading Splunk: ${SPLUNK_BUILD_URL}" \
2424 && wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \
25- && wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \
2625 && cd /tmp \
27- && echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \
28- && rm /tmp/splunk.tgz.sha512 \
2926 && tar -C /opt -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
3027 && mv ${SPLUNK_HOME}/etc ${SPLUNK_HOME}-etc \
3128 && mkdir -p ${SPLUNK_HOME}/etc ${SPLUNK_HOME}/var
You can’t perform that action at this time.
0 commit comments