vbernal_exp / Dockerfile
seier-brightside's picture
Update Dockerfile
48f6c2b verified
raw
history blame contribute delete
352 Bytes
FROM python:3.10
RUN pip install --upgrade pip
# Versiones compatibles entre sí
RUN pip install \
span-marker==1.5.0 \
transformers==4.36.2 \
datasets==2.16.1 \
evaluate==0.4.1 \
accelerate==0.25.0 \
sentencepiece \
scikit-learn \
huggingface_hub==0.23.0 \
gradio==4.19.2
EXPOSE 7860
CMD ["python", "app.py"]