From 695eb1cb0d816509c2b17eeacca66e09e7cd7ce4 Mon Sep 17 00:00:00 2001 From: aguima10 Date: Tue, 30 Jul 2024 11:38:47 -0300 Subject: [PATCH] Added 'unzip' on system updates/install dependencies --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 08235b7..7d7b3f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,8 @@ RUN yum update -y && \ yum -y install yum-plugin-versionlock && \ yum -y versionlock add java-1.8.0-openjdk-1.8.0.362.b08-0.amzn2.0.1.x86_64 && \ yum -y install java-1.8.0-openjdk && \ - + yum -y install unzip && \ + pip install --upgrade pip && \ pip install pyspark==$PYSPARK_VERSION boto3 && \