From a8f2c1572d4f89c60316881a3c2053fab83d1b76 Mon Sep 17 00:00:00 2001 From: ali-encord <112628737+ali-encord@users.noreply.github.com> Date: Mon, 8 May 2023 08:23:12 +0100 Subject: [PATCH] Ar/fixing fastapi ea endpoint (#380) * adding health check endpoint - GKE ingress needs for checking service status * changing endpoint path as static already exist for streamlit app * updating Dockerfile file to work with new fastapi endpoint * fixing linting * adding new expose port in readme * fixing dockerfile --------- Signed-off-by: ali-encord <112628737+ali-encord@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c12929e9c..b747c9a96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN curl -sSL https://install.python-poetry.org | \ ENV PATH="/home/appuser/.local/bin:$PATH" -COPY .env pyproject.toml poetry.lock /home/appuser +COPY .env pyproject.toml poetry.lock /home/appuser/ RUN poetry cache clear pypi --all RUN poetry config virtualenvs.create true \