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 @@ -21,12 +21,9 @@ FROM ${SPLUNK_BASE_IMAGE}:latest as package
21
21
ARG SPLUNK_BUILD_URL
22
22
COPY splunk/common-files/make-minimal-exclude.py /tmp
23
23
RUN python /tmp/make-minimal-exclude.py ${SPLUNK_BUILD_URL} > /tmp/splunk-minimal-exclude.list \
24
- && echo "Downloading Splunk and validating the checksum at : ${SPLUNK_BUILD_URL}" \
24
+ && echo "Downloading Splunk: ${SPLUNK_BUILD_URL}" \
25
25
&& wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \
26
- && wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \
27
26
&& cd /tmp \
28
- && echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \
29
- && rm /tmp/splunk.tgz.sha512 \
30
27
&& mkdir -p /minimal/splunk/var /extras/splunk/var \
31
28
&& tar -C /minimal/splunk --strip 1 --exclude-from=/tmp/splunk-minimal-exclude.list -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
32
29
&& tar -C /extras/splunk --strip 1 --wildcards --files-from=/tmp/splunk-minimal-exclude.list -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
You can’t perform that action at this time.
0 commit comments