Mohamed41 commited on
Commit
91f93da
1 Parent(s): 81c3e39

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -1,6 +1,8 @@
1
  FROM python:3.9
2
  WORKDIR /code
 
3
  COPY . .
4
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
5
  RUN pip install transformers==4.6.1
 
6
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  FROM python:3.9
2
  WORKDIR /code
3
+
4
  COPY . .
5
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
6
  RUN pip install transformers==4.6.1
7
+ RUN mkdir ./.cache
8
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]