Skip to content

Commit 8b2d7fd

Browse files
committed
bug: verify that dumb-init exists
Verify that dumb-init exists and is non-zero size. At some point a dumb-init package was creating a 0 length file for dumb-init.
1 parent 0fc1650 commit 8b2d7fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/Docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,8 @@ RUN apk --no-cache upgrade; \
218218
install -U $upgrades < /dev/null; \
219219
else \
220220
echo "Nothing to pip update"; \
221-
fi
221+
fi; \
222+
test -s /usr/bin/dumb-init
222223

223224
ARG source
224225
ARG pythonversion

0 commit comments

Comments
 (0)