Skip to content

Commit

Permalink
fix: fixed health check port (#14) (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
adubovik authored Oct 30, 2023
1 parent b3ebbb7 commit 3f68657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN mkdir /app/log && chown -R appuser:appuser /app
USER appuser

HEALTHCHECK --start-period=30s --interval=1m --timeout=3s \
CMD wget --no-verbose --spider --tries=1 http://localhost:80/health || exit 1
CMD wget --no-verbose --spider --tries=1 http://localhost:8080/health || exit 1

EXPOSE 8080 9464
ENTRYPOINT ["/app/bin/aidial-core"]

0 comments on commit 3f68657

Please sign in to comment.