remove poetry from dockerfile

This commit is contained in:
mungai-njoroge
2024-03-24 19:14:29 +03:00
parent ed6732e7fd
commit 21ba84c034
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ def create_api():
description=open_api_description,
)
app = OpenAPI(__name__, info=api_info)
app = OpenAPI(__name__, info=api_info, doc_prefix="/docs")
CORS(app, origins="*")
Compress(app)