UNCLASSIFIED

Commit cd4fbd5a authored by SonicDeathMonkey's avatar SonicDeathMonkey
Browse files

meh

parent c8652371
Pipeline #191224 failed with stages
in 23 minutes and 25 seconds
...@@ -27,11 +27,10 @@ USER root ...@@ -27,11 +27,10 @@ USER root
######################################## ########################################
## Install Python ## Install Python
RUN dnf update -y && \ RUN dnf update -y \
dnf install -y python38.x86_64 && \ && dnf install -y python38.x86_64 python38-pip-wheel.noarch openssl tar procps iputils hostname \
dnf install -y python38-pip-wheel.noarch && \ && dnf clean all \
dnf clean all && \ && rm -rf /var/cache/dnf
rm -rf /var/cache/dnf
## Python Installed ## Python Installed
######################################## ########################################
...@@ -41,18 +40,11 @@ RUN dnf update -y && \ ...@@ -41,18 +40,11 @@ RUN dnf update -y && \
## Add the Confluent Docker Utility Belt which helps with starting the proper applications ## Add the Confluent Docker Utility Belt which helps with starting the proper applications
## https://github.com/confluentinc/common-docker/tree/master/utility-belt ## https://github.com/confluentinc/common-docker/tree/master/utility-belt
COPY wheel-0.35.1-py2.py3-none-any.whl /tmp/wheel-0.35.1-py2.py3-none-any.whl COPY confluent_docker_utils-0.0.44-py3-none-any.whl /tmp/confluent_docker_utils-0.0.44-py3-none-any.whl
COPY python_dateutil-2.8.0-py2.py3-none-any.whl /tmp/python_dateutil-2.8.0-py2.py3-none-any.whl
COPY setuptools-50.0.0-py3-none-any.whl /tmp/setuptools-50.0.0-py3-none-any.whl
COPY confluent_docker_utils-0.0.40-py3-none-any.whl /tmp/confluent_docker_utils-0.0.40-py3-none-any.whl
COPY *.whl /tmp/python-dependencies/ COPY *.whl /tmp/python-dependencies/
COPY *.gz /tmp/python-dependencies/ COPY *.gz /tmp/python-dependencies/
RUN dnf install -y openssl tar procps iputils hostname \ RUN pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/confluent_docker_utils-0.0.44-py3-none-any.whl
&& pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/wheel-0.35.1-py2.py3-none-any.whl \
&& pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/setuptools-50.0.0-py3-none-any.whl \
&& pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/python_dateutil-2.8.0-py2.py3-none-any.whl \
&& pip3 install --no-index --prefix=/usr/local --upgrade --find-links /tmp/python-dependencies/ /tmp/confluent_docker_utils-0.0.40-py3-none-any.whl
## dub installed ## dub installed
######################################## ########################################
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment