kinyarwanda-engine / Dockerfile
black44's picture
Update Dockerfile
a3f3f79 verified
raw
history blame
190 Bytes
FROM python:3.9-slim
WORKDIR /
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]