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