Merge pull request #286 from Hexastack/fix/hexabot-nlu-dockerfile-expose-port

fix: missing nlu dockerfile expose port
This commit is contained in:
Med Marrouchi
2024-10-28 11:30:16 +01:00
committed by GitHub

View File

@@ -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"]