Skip to content

Commit 1fec575

Browse files
Align controller Dockerfile with uvicorn port
1 parent 63a5468 commit 1fec575

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile.controller

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ RUN chown -R appuser:appuser /app
3737
USER appuser
3838

3939
# Expose controller port
40-
EXPOSE 9000
40+
EXPOSE 8000
4141

4242
# Health check
4343
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
44-
CMD curl -f http://localhost:9000/health || exit 1
44+
CMD curl -f http://localhost:8000/health || exit 1
4545

4646
# Run a lightweight controller API used for local compose verification.
4747
CMD ["python", "-m", "uvicorn", "prototype.controller_service:app", "--host", "0.0.0.0", "--port", "8000"]

0 commit comments

Comments
 (0)