From 857415079c372521775ce839af8f55e6ff62e373 Mon Sep 17 00:00:00 2001 From: jweatherford Date: Wed, 24 Feb 2021 13:29:43 -0500 Subject: [PATCH] directory doesn't seem to exist --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d247ff..b551f89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,11 @@ 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 && \ rm -rf /var/cache/dnf && \ - mkdir -p /opt/spark/python && \ + mkdir -p /opt/spark/python/pyspark && \ + mkdir -p /opt/spark/python/lib && \ chown -R 185:185 /opt/spark/ -#COPY --from=base python/pyspark /opt/spark/python/pyspark +COPY --from=base python/pyspark /opt/spark/python/pyspark COPY --from=base python/lib /opt/spark/python/lib -- GitLab