Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion base/debian-10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ LABEL maintainer="support@splunk.com"
ARG SCLOUD_URL
ENV SCLOUD_URL=${SCLOUD_URL} \
DEBIAN_FRONTEND=noninteractive \
PYTHON_VERSION=3.7.9
PYTHON_VERSION=3.7.10 \
PYTHON_MD5=0b19e34a6dabc4bf15fdcdf9e77e9856

COPY install.sh /install.sh
RUN /install.sh && rm -rf /install.sh
1 change: 1 addition & 0 deletions base/debian-10/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ apt-get install -y --no-install-recommends curl sudo libgssapi-krb5-2 busybox pr
# Install Python and necessary packages
PY_SHORT=${PYTHON_VERSION%.*}
wget -O /tmp/python.tgz https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz
echo "$PYTHON_MD5 /tmp/python.tgz" | md5sum --check
mkdir -p /tmp/pyinstall
tar -xzC /tmp/pyinstall/ --strip-components=1 -f /tmp/python.tgz
rm /tmp/python.tgz
Expand Down
3 changes: 2 additions & 1 deletion base/debian-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ LABEL maintainer="support@splunk.com"
ARG SCLOUD_URL
ENV SCLOUD_URL=${SCLOUD_URL} \
DEBIAN_FRONTEND=noninteractive \
PYTHON_VERSION=3.7.9
PYTHON_VERSION=3.7.10 \
PYTHON_MD5=0b19e34a6dabc4bf15fdcdf9e77e9856

COPY install.sh /install.sh
RUN /install.sh && rm -rf /install.sh
1 change: 1 addition & 0 deletions base/debian-9/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ apt-get install -y --no-install-recommends curl sudo libgssapi-krb5-2 busybox pr
# Install Python and necessary packages
PY_SHORT=${PYTHON_VERSION%.*}
wget -O /tmp/python.tgz https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz
echo "$PYTHON_MD5 /tmp/python.tgz" | md5sum --check
mkdir -p /tmp/pyinstall
tar -xzC /tmp/pyinstall/ --strip-components=1 -f /tmp/python.tgz
rm /tmp/python.tgz
Expand Down
3 changes: 2 additions & 1 deletion base/redhat-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ LABEL name="splunk" \

ARG SCLOUD_URL
ENV SCLOUD_URL=${SCLOUD_URL} \
PYTHON_VERSION=3.7.9
PYTHON_VERSION=3.7.10 \
PYTHON_MD5=0b19e34a6dabc4bf15fdcdf9e77e9856

COPY install.sh /install.sh

Expand Down
1 change: 1 addition & 0 deletions base/redhat-8/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ microdnf -y --nodocs update gnutls kernel-headers librepo libnghttp2 tzdata
# Install Python and necessary packages
PY_SHORT=${PYTHON_VERSION%.*}
wget -O /tmp/python.tgz https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz
echo "$PYTHON_MD5 /tmp/python.tgz" | md5sum --check
mkdir -p /tmp/pyinstall
tar -xzC /tmp/pyinstall/ --strip-components=1 -f /tmp/python.tgz
rm /tmp/python.tgz
Expand Down