mirror of
https://github.com/vmware-tanzu/velero.git
synced 2025-12-23 14:25:22 +00:00
Fix infinite sleep in fsfreeze container
busybox's sleep command doesn't support the `infinity` value, so update it to be an infinite loop. Signed-off-by: Nolan Brubaker <nolan@heptio.com>
This commit is contained in:
@@ -19,4 +19,4 @@ MAINTAINER Wayne Witzel III <wayne@heptio.com>
|
|||||||
RUN apk add --no-cache ca-certificates
|
RUN apk add --no-cache ca-certificates
|
||||||
RUN apk add --update --no-cache busybox util-linux
|
RUN apk add --update --no-cache busybox util-linux
|
||||||
|
|
||||||
ENTRYPOINT ["/bin/sh", "-c", "sleep infinity"]
|
ENTRYPOINT ["/bin/sh", "-c", "while true; do sleep 10000; done"]
|
||||||
|
|||||||
Reference in New Issue
Block a user