spellcheck_model / dockerfile
Leonardo Yoshida
feat: add initial trained model and scripts
54f5ec9
Raw
History Blame Contribute Delete
116 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "train.py"]