Skip to content

Commit

Permalink
Update Dockerfile (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadatko authored Oct 15, 2023
1 parent de987ee commit eaf6600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasmoadmin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN \
COPY rootfs /

# Health check
HEALTHCHECK CMD [[ "curl --fail http://127.0.0.1:9541" ] || [ "curl --fail --insecure https://127.0.0.1:9541" ]] || exit 1
HEALTHCHECK CMD if ! curl --fail http://127.0.0.1:9541 && ! curl --fail --insecure https://127.0.0.1:9541; then exit 1; fi

# Build arguments
ARG BUILD_ARCH
Expand Down

0 comments on commit eaf6600

Please sign in to comment.