fix: missing nlu dockerfile expose port

This commit is contained in:
yassinedorbozgithub 2024-10-28 10:32:38 +01:00
parent b0a5584de7
commit 792fe2199e

View File

@ -15,5 +15,7 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
# Copy source code # Copy source code
COPY . . COPY . .
EXPOSE 5000
# Entrypoint # Entrypoint
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"] CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"]