Skip to content

Commit a4ee552

Browse files
authored
Fix backend healthcheck address (#1171)
accidental change in https://github.com/evroon/bracket/pull/1168/files
1 parent 20209f9 commit a4ee552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -ex \
1919
EXPOSE 8400
2020

2121
HEALTHCHECK --interval=10s --timeout=5s --retries=5 \
22-
CMD ["wget", "--spider", "http://0.0.0.0:8400/ping", "||", "exit", "1"]
22+
CMD ["wget", "--spider", "http://localhost:8400/ping", "||", "exit", "1"]
2323

2424
CMD [ \
2525
"pipenv", \

0 commit comments

Comments
 (0)