From b1fcce5f8d897e79f037a3c1b6768cf3698d9dd6 Mon Sep 17 00:00:00 2001 From: jrpereirajr Date: Sun, 28 Jul 2024 18:45:20 -0300 Subject: [PATCH] remove unnecessary steps in build for image size shrinking --- Dockerfile-streamlit | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Dockerfile-streamlit b/Dockerfile-streamlit index 7e47620..dd37bcb 100644 --- a/Dockerfile-streamlit +++ b/Dockerfile-streamlit @@ -4,13 +4,6 @@ COPY ./python/sqlzilla /app WORKDIR /app -RUN apt-get update && apt-get install -y \ - build-essential \ - curl \ - software-properties-common \ - git \ - && rm -rf /var/lib/apt/lists/* - RUN pip3 install -r requirements.txt EXPOSE 8501