Update Dockerfile
Browse files- 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"]
|