Actualización Dockerfile

This commit is contained in:
AlexLara
2026-03-03 13:30:24 -06:00
parent 857f8f94d4
commit 4b6be3439d

View File

@@ -2,12 +2,11 @@ FROM python:3.10-slim
WORKDIR /code WORKDIR /code
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \ build-essential \
curl \ curl \
software-properties-common \
git \ git \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY . . COPY . .