Ash808 commited on
Commit
cc731a8
·
1 Parent(s): f0202bd

Add application file

Browse files
Files changed (2) hide show
  1. Dockerfile.py +3 -0
  2. requirements.txt +2 -2
Dockerfile.py CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  FROM python:3.9
2
 
3
  RUN useradd -m -u 1000 user
 
1
+ # Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
+
4
  FROM python:3.9
5
 
6
  RUN useradd -m -u 1000 user
requirements.txt CHANGED
@@ -1,2 +1,2 @@
1
- fastapi
2
- uvicorn
 
1
+ =fastapi
2
+ uvicorn[standard]