fevtest / Dockerfile
AlexandreScriptsMT's picture
Update Dockerfile
aa0587b verified
raw
history blame
325 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
libopenblas-dev \
&& rm -rf /var/lib/apt/lists/*
# Link completo e direto para o binário de CPU
RUN pip install --no-cache-dir \
https://github.com \
gradio huggingface_hub
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]