Spaces:
Runtime error
Runtime error
Add Jinja upgrade
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -10,9 +10,10 @@ ENV HOME=/exp/fromage
|
|
| 10 |
WORKDIR /exp/fromage
|
| 11 |
COPY ./requirements.txt ./requirements.txt
|
| 12 |
RUN python -m pip install -r ./requirements.txt
|
|
|
|
| 13 |
RUN python -m pip install gradio
|
| 14 |
|
| 15 |
COPY . .
|
| 16 |
RUN chmod -R a+rwX .
|
| 17 |
|
| 18 |
-
CMD ["uvicorn", "app:main", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 10 |
WORKDIR /exp/fromage
|
| 11 |
COPY ./requirements.txt ./requirements.txt
|
| 12 |
RUN python -m pip install -r ./requirements.txt
|
| 13 |
+
RUN python -m pip install --upgrade Jinja2
|
| 14 |
RUN python -m pip install gradio
|
| 15 |
|
| 16 |
COPY . .
|
| 17 |
RUN chmod -R a+rwX .
|
| 18 |
|
| 19 |
+
CMD ["uvicorn", "app:main", "--host", "0.0.0.0", "--port", "7860"]
|