Law_Model_Server / Dockerfile
vkrishnan569's picture
Server Deployment
630946f
raw
history blame
261 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 . .
RUN mkdir -p /path_to_cache_directory
CMD ["uvicorn","main:model","--host", "0.0.0.0", "--port", "80"]