TextChatAPI / Dockerfile
jacob-braun-mn's picture
Update port
d0ed021
raw
history blame
280 Bytes
FROM python:3.9-slim
ENV TRANSFORMERS_CACHE=/code/.cache/huggingface/hub
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]