Spaces:
No application file
No application file
Add application file
Browse files- Dockerfile.py +3 -0
- 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]
|