Conversor-HTML-ISO / Dockerfile
guilhermemfbastos's picture
Update Dockerfile
f96cfde verified
raw
history blame contribute delete
429 Bytes
FROM python:3.10-slim
# Instala ferramentas binárias essenciais
RUN apt-get update && apt-get install -y \
xorriso \
isolinux \
syslinux \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Força a instalação das versões que não dão erro de importação
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir "huggingface_hub==0.19.4" "gradio==4.12.0"
COPY . .
CMD ["python", "app.py"]