From 22ee1e62a9dde71b35b7011b9da16467bcc1f2fc Mon Sep 17 00:00:00 2001 From: Robert Marshall Date: Wed, 3 Apr 2019 00:47:41 -0400 Subject: [PATCH] Add hostname executable to OpenSuse 42.3 - The OpenSuse 42.3 container image does not contain the `hostname` binary by default. GitlabCtl::Util requires the `hostname` binary when invoking its fqdn method. Related: https://gitlab.com/gitlab-org/omnibus-gitlab/issues/2885 Signed-off-by: Robert Marshall --- Dockerfile.omnibus-gitlab-opensuse42.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.omnibus-gitlab-opensuse42.3 b/Dockerfile.omnibus-gitlab-opensuse42.3 index abfcfec..1c79e42 100644 --- a/Dockerfile.omnibus-gitlab-opensuse42.3 +++ b/Dockerfile.omnibus-gitlab-opensuse42.3 @@ -3,7 +3,7 @@ FROM opensuse:42.3 RUN zypper -q -n --gpg-auto-import-keys update \ && zypper -q -n in -t pattern devel_perl devel_basis \ && zypper -q -n install \ - gcc gcc-c++ git make curl zlib-devel libopenssl-devel glibc-i18ndata glibc-locale \ + gcc gcc-c++ git make curl zlib-devel libopenssl-devel glibc-i18ndata glibc-locale hostname \ && zypper clean -a ENV LANG en_US.UTF-8