UNCLASSIFIED

Commit 43851471 authored by Jeffrey Weatherford's avatar Jeffrey Weatherford
Browse files

Merge branch 'jweatherford-development-patch-29316' into 'renovate/pip-21.x'

Update Dockerfile, make it a little more maintainable

See merge request !26
parents 50c06ade 915b48ed
Pipeline #434664 passed with stages
in 15 minutes and 46 seconds
...@@ -11,10 +11,10 @@ ARG spark_uid=185 ...@@ -11,10 +11,10 @@ ARG spark_uid=185
USER root USER root
COPY pip-21.1.1-py3-none-any.whl setuptools-53.0.0-py3-none-any.whl ./ COPY *.whl ./
RUN dnf -y update && dnf -y upgrade && \ RUN dnf -y update && dnf -y upgrade && \
pip3 install --upgrade ./pip-21.1.1-py3-none-any.whl ./setuptools-53.0.0-py3-none-any.whl && \ pip3 install --upgrade ./*.whl && \
rm -rf /var/cache/dnf && \ rm -rf /var/cache/dnf && \
mkdir -p /opt/spark/python/pyspark && \ mkdir -p /opt/spark/python/pyspark && \
mkdir -p /opt/spark/python/lib && \ mkdir -p /opt/spark/python/lib && \
......
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