From 3fd6ad744081d70cfe0c33c6ab032055fb695a8e Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Fri, 10 Feb 2023 17:18:18 -0500 Subject: [PATCH] might save space --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index b4bfd18..b20e3a0 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -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"]