From 5414cb61972c9c2957a5d69c0ad1fbc92ce1e260 Mon Sep 17 00:00:00 2001 From: Wild Kat Date: Mon, 17 Sep 2018 23:41:51 +0200 Subject: Bump Dockerfile to phusion/baseimage v0.11 (#1529) --- Dockerfile | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index e6d7733..1af9ee1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,36 +1,10 @@ -# -- stage 1: backport libssh2 1.7.0 from zesty for xenial, as githubrepo hook requires it -FROM ubuntu:xenial as libssh2-backport - -# set up dependencies for the build process -RUN apt-get -yq update && \ - apt-get -yq install build-essential chrpath debhelper dh-autoreconf libgcrypt20-dev zlib1g-dev - -# build libssh2 1.7.0 -WORKDIR /tmp/libssh2-build -ADD https://launchpad.net/ubuntu/+archive/primary/+files/libssh2_1.7.0-1ubuntu1.debian.tar.xz . -ADD https://launchpad.net/ubuntu/+archive/primary/+files/libssh2_1.7.0.orig.tar.gz . -RUN tar xvf libssh2_1.7.0.orig.tar.gz -WORKDIR /tmp/libssh2-build/libssh2-1.7.0 -RUN tar xvf ../libssh2_1.7.0-1ubuntu1.debian.tar.xz - -WORKDIR /tmp/libssh2-build/libssh2-1.7.0 -ENV DEB_BUILD_OPTIONS nocheck -RUN dpkg-buildpackage -b - -# -- stage 2: build the actual oxidized container -FROM phusion/baseimage:0.10.1 +# Single-stage build of an oxidized container from phusion/baseimage-docker v0.11, derived from Ubuntu 18.04 (Bionic Beaver) +FROM phusion/baseimage:0.11 LABEL maintainer="Samer Abdel-Hafez " # set up dependencies for the build process RUN apt-get -yq update && \ - apt-get -yq install ruby2.3 ruby2.3-dev libsqlite3-dev libssl-dev pkg-config make cmake libssh2-1-dev git g++ libffi-dev ruby-bundler libicu-dev - -# upgrade libssh2 to self-built backport from stage 1 -COPY --from=libssh2-backport \ - /tmp/libssh2-build/libssh2-1_1.7.0-1ubuntu1_amd64.deb \ - /tmp/libssh2-build/libssh2-1-dev_1.7.0-1ubuntu1_amd64.deb \ - /tmp/ -RUN dpkg -i /tmp/*.deb + apt-get -yq install ruby2.5 ruby2.5-dev libsqlite3-dev libssl-dev pkg-config make cmake libssh2-1-dev git g++ libffi-dev ruby-bundler libicu-dev # dependencies for hooks RUN gem install aws-sdk slack-api xmpp4r cisco_spark @@ -52,7 +26,6 @@ RUN gem install oxidized-web --no-ri --no-rdoc # clean up WORKDIR / RUN rm -rf /tmp/oxidized -RUN rm /tmp/*.deb RUN apt-get -yq --purge autoremove ruby-dev pkg-config make cmake ruby-bundler # add runit services -- cgit v1.2.1