Hhhggv / Dockerfile
Ffftdtd5dtft's picture
Update Dockerfile
6d23ac8 verified
raw
history blame
205 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
# Crear directorios para nltk_data y sklearn_data
RUN mkdir -p /cache
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]