cyberai-1 commited on
Commit
0c42503
·
1 Parent(s): 0cbbc0f

Add model weights

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -1
  2. README.md +4 -3
Dockerfile CHANGED
@@ -13,4 +13,5 @@ COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
+
17
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
README.md CHANGED
@@ -1,9 +1,10 @@
1
  ---
2
  title: Computer Vison | Image Classification
3
- emoji: 🐳
4
- colorFrom: gray
5
- colorTo: blue
6
  sdk: docker
 
7
  pinned: false
8
  ---
9
 
 
1
  ---
2
  title: Computer Vison | Image Classification
3
+ emoji: 🤖
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: docker
7
+ app_port: 7860
8
  pinned: false
9
  ---
10