Update Dockerfile (#340)

This commit is contained in:
Dusan Cervenka 2023-10-15 17:13:22 +02:00 committed by GitHub
parent de987ee671
commit eaf660069d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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