Spaces:
Running
Running
Upload 3 files
Browse files- Dockerfile +1 -1
- requirements.txt +6 -6
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
## Use the official Python 3.9 image
|
2 |
-
FROM python:3.
|
3 |
|
4 |
## set the working directory to /code
|
5 |
WORKDIR /code
|
|
|
1 |
## Use the official Python 3.9 image
|
2 |
+
FROM python:3.12
|
3 |
|
4 |
## set the working directory to /code
|
5 |
WORKDIR /code
|
requirements.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
fastapi
|
2 |
-
requests
|
3 |
-
uvicorn[standard]
|
4 |
-
sentencepiece
|
5 |
-
torch
|
6 |
-
transformers
|
|
|
1 |
+
fastapi
|
2 |
+
requests
|
3 |
+
uvicorn[standard]
|
4 |
+
sentencepiece
|
5 |
+
torch
|
6 |
+
transformers
|