NsfwExtension / Dockerfile
Ravi Pandey
Docker deploy
9f94b7a
raw
history blame
No virus
233 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "server.caption_server:app", "--reload", "--port", "8000"]