From 792fe2199eb15ac7ea340d8f027d7e880879461f Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Mon, 28 Oct 2024 10:32:38 +0100 Subject: [PATCH] fix: missing nlu dockerfile expose port --- nlu/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nlu/Dockerfile b/nlu/Dockerfile index 129d52e..e460d96 100644 --- a/nlu/Dockerfile +++ b/nlu/Dockerfile @@ -15,5 +15,7 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt # Copy source code COPY . . +EXPOSE 5000 + # Entrypoint CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"]