ismaprasetiyadi commited on
Commit
c9d05c6
·
verified ·
1 Parent(s): 4b09015

Update Dockerfile

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