You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docker doesn't allow the times in the interval, start-period, or timeout flags of HEALTHCHECK instructions to be less than one millisecond. We should create a diagnostic to check for this case.
FROM scratch
HEALTHCHECK --timeout=100ns CMD ls
$ docker build .
Sending build context to Docker daemon 86.15MB
Step 1/2 : FROM scratch
--->
Step 2/2 : HEALTHCHECK --timeout=100ns CMD ls
Interval "timeout" cannot be less than 1ms
The text was updated successfully, but these errors were encountered:
Docker doesn't allow the times in the
interval
,start-period
, ortimeout
flags ofHEALTHCHECK
instructions to be less than one millisecond. We should create a diagnostic to check for this case.The text was updated successfully, but these errors were encountered: