From 4b6be3439dac2692bfe51fedb46192990769263c Mon Sep 17 00:00:00 2001 From: AlexLara Date: Tue, 3 Mar 2026 13:30:24 -0600 Subject: [PATCH] =?UTF-8?q?Actualizaci=C3=B3n=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 610ad5e..49b9f1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,11 @@ FROM python:3.10-slim WORKDIR /code -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ - software-properties-common \ git \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* COPY . .