frasan commited on
Commit
fb3ab16
1 Parent(s): b776295

changed to guicorn

Browse files
Files changed (3) hide show
  1. Dockerfile +1 -1
  2. librarymed/kromin/__init__.py +0 -0
  3. 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 ["uvicorn", "librarymed.main:app", "--host", "0.0.0.0", "--port", "8080"]
 
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