From 3948a947cf8beaf4b0a16471dfbc80131db9e1c6 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Thu, 19 Dec 2024 12:19:19 +0100 Subject: [PATCH] Revert "[Am-222] compute min max for area and fix root path (#94)" This reverts commit 84f69e8b879d37da0b13d2042a108371d213aec0. --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index df066a80..b95b4b07 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -21,7 +21,7 @@ RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8000 -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--root-path", "/api/"] +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] FROM production as development