Eliminar Dockerfile

This commit is contained in:
Pablo Pérez Arcas 2026-03-30 08:29:38 +00:00
parent 296a1d8450
commit d89b58650f

View File

@ -1,12 +0,0 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 5000
CMD ["python", "app.py"]