consorcio-auto-v2 / Dockerfile
Arthur-Attili's picture
Create Dockerfile
a12eead verified
Raw
History Blame Contribute Delete
277 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir \
numpy==1.24.3 \
pandas==2.0.3 \
requests==2.31.0 \
gradio==3.50.2 \
openpyxl==3.1.2
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]