comma-fixer / Dockerfile
klasocki's picture
WIP Docker and some minor updates
a5fed35
raw
history blame
323 Bytes
FROM python:3.10-slim
WORKDIR /comma-fixer
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
COPY ~/.cache/huggingface/hub/models--oliverguhr--fullstop-punctuation-multilang-large/ ~/.cache/huggingface/hub/models--oliverguhr--fullstop-punctuation-multilang-large/
EXPOSE 8000
#CMD gunicorn "app:app"