might save space
This commit is contained in:
parent
69c7fdc4df
commit
3fd6ad7440
1 changed files with 1 additions and 1 deletions
|
@ -2,6 +2,6 @@
|
||||||
FROM pytorch/pytorch
|
FROM pytorch/pytorch
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.txt requirements.txt
|
COPY requirements.txt requirements.txt
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
COPY . .
|
COPY . .
|
||||||
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]
|
CMD [ "uvicorn", "chatbots:api", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue