From 20e20f596f9a26191c8c0faad44c9eda57e77daf Mon Sep 17 00:00:00 2001 From: "Jonathan A. Sternberg" Date: Tue, 6 Feb 2018 11:53:34 -0600 Subject: [PATCH] Install autoconf in the circle build for fpm Upstream must have changed and now autoconf isn't installed as an implicit dependency of one of the packages anymore. Install is explicitly so the fpm portion of the circle build works correctly. --- Dockerfile_build_ubuntu32 | 2 ++ Dockerfile_build_ubuntu64 | 2 ++ Dockerfile_build_ubuntu64_go19 | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Dockerfile_build_ubuntu32 b/Dockerfile_build_ubuntu32 index d22263c33c..0b8efbdfed 100644 --- a/Dockerfile_build_ubuntu32 +++ b/Dockerfile_build_ubuntu32 @@ -10,6 +10,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ ruby \ ruby-dev \ rubygems \ + autoconf \ + libtool \ build-essential \ rpm \ zip \ diff --git a/Dockerfile_build_ubuntu64 b/Dockerfile_build_ubuntu64 index 8db35b0b42..0667f8c78b 100644 --- a/Dockerfile_build_ubuntu64 +++ b/Dockerfile_build_ubuntu64 @@ -9,6 +9,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ make \ ruby \ ruby-dev \ + autoconf \ + libtool \ build-essential \ rpm \ zip \ diff --git a/Dockerfile_build_ubuntu64_go19 b/Dockerfile_build_ubuntu64_go19 index 8db35b0b42..0667f8c78b 100644 --- a/Dockerfile_build_ubuntu64_go19 +++ b/Dockerfile_build_ubuntu64_go19 @@ -9,6 +9,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ make \ ruby \ ruby-dev \ + autoconf \ + libtool \ build-essential \ rpm \ zip \