vip11017 commited on
Commit
62d3f84
·
1 Parent(s): 46648fe

Fix cache permission issue

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.10-slim
2
 
3
  RUN apt-get update && apt-get install -y \
4
  git \
@@ -15,5 +15,5 @@ COPY requirements.txt .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
  EXPOSE 7860
18
- #
19
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.11-slim
2
 
3
  RUN apt-get update && apt-get install -y \
4
  git \
 
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
  EXPOSE 7860
18
+
19
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]