ordena y copia todo

This commit is contained in:
2025-12-07 19:26:03 +00:00
parent dac957ffea
commit 33df0652c1

View File

@@ -2,9 +2,8 @@ FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "script.py"]