From 697ea1723ebca89be49d4049a94861fcc056f77c Mon Sep 17 00:00:00 2001 From: Jeppe Fihl-Pearson Date: Fri, 4 Mar 2022 14:03:22 +0000 Subject: [PATCH] Correct path to dumb-init in docker-entrypoint.sh The path changed after dumb-init was switched to be installed via `apk` rather than downloaded directly as a binary. --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 572b270d42..5936a09a19 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/dumb-init /bin/sh +#!/usr/bin/dumb-init /bin/sh set -e # Modified: https://github.com/hashicorp/docker-consul/blob/2c2873f9d619220d1eef0bc46ec78443f55a10b5/0.X/docker-entrypoint.sh