UNCLASSIFIED

Commit 915b48ed authored by Jeffrey Weatherford's avatar Jeffrey Weatherford
Browse files

Update Dockerfile, make it a little more maintainable

parent 4d842a59
Pipeline #434627 passed with stages
...@@ -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