Mohamed41 commited on
Commit
bc5bc20
1 Parent(s): 5a962ae

Update Dockerfile

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