Spaces:
Sleeping
Sleeping
changed to guicorn
Browse files- Dockerfile +1 -1
- librarymed/kromin/__init__.py +0 -0
- requirements.txt +2 -1
Dockerfile
CHANGED
@@ -41,4 +41,4 @@ EXPOSE 8080
|
|
41 |
ENV NAME World
|
42 |
|
43 |
# Command to run on container start
|
44 |
-
CMD [
|
|
|
41 |
ENV NAME World
|
42 |
|
43 |
# Command to run on container start
|
44 |
+
CMD [ "gunicorn", "--bind", "0.0.0.0:8080", "librarymed.main:app" ]
|
librarymed/kromin/__init__.py
DELETED
File without changes
|
requirements.txt
CHANGED
@@ -38,4 +38,5 @@ pillow-heif
|
|
38 |
unstructured-pytesseract
|
39 |
fpdf
|
40 |
qdrant_client
|
41 |
-
python-dotenv
|
|
|
|
38 |
unstructured-pytesseract
|
39 |
fpdf
|
40 |
qdrant_client
|
41 |
+
python-dotenv
|
42 |
+
gunicorn
|