might save space

This commit is contained in:
Adam 2023-02-10 17:18:18 -05:00
parent 69c7fdc4df
commit 3fd6ad7440

View file

@ -2,6 +2,6 @@
FROM pytorch/pytorch
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]