From 428dcbc1b7c5b95ffe07a196f77b67aa8026f8e6 Mon Sep 17 00:00:00 2001 From: jweatherford Date: Wed, 24 Feb 2021 11:09:00 -0500 Subject: [PATCH] forgot to copy the .whl files in --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 034072f..9965846 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,10 @@ ARG spark_uid=185 USER root +COPY pip-21.0.1-py3-none-any.whl setuptools-53.0.0-py3-none-any.whl ./ + RUN dnf -y update && dnf -y upgrade && \ - pip3 install --upgrade pip-21.0.1-py3-none-any.whl setuptools-53.0.0-py3-none-any.whl && \ + pip3 install --upgrade ./pip-21.0.1-py3-none-any.whl ./setuptools-53.0.0-py3-none-any.whl && \ rm -rf /var/cache/dnf COPY --from=base /python/spark /opt/spark/python/pyspark -- GitLab