From 1bfdc9164a4b23149d631fbccaa51e5c9bdada82 Mon Sep 17 00:00:00 2001 From: "acernas@brightcove.com" Date: Wed, 8 Feb 2023 12:47:49 -0600 Subject: [PATCH 1/2] Test image building --- Dockerfile | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5264d25..24f24e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ MAINTAINER Adam Kittelson @adamkittelson # is updated with the current date. It will force refresh of all # of the base images and things like `apt-get update` won't be using # old cached versions when the Dockerfile is built. -ENV REFRESHED_AT 2020-01-09 +ENV REFRESHED_AT 2023-08-02 # Use baseimage-docker's init system. CMD ["/sbin/my_init"] @@ -33,16 +33,41 @@ RUN echo $(openssl version) # See : https://github.com/phusion/baseimage-docker/issues/58 RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections -RUN echo "deb http://packages.erlang-solutions.com/ubuntu bionic contrib" >> /etc/apt/sources.list && \ - apt-key adv --fetch-keys http://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc && \ - apt-get -qq update && apt-get install -y \ - esl-erlang=1:22.2.8-1 \ +#RUN echo "deb http://packages.erlang-solutions.com/ubuntu bionic contrib" >> /etc/apt/sources.list && \ + #apt-key adv --fetch-keys http://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc && \ + #apt-get -qq update && apt-get install -y \ + #esl-erlang=1:23.0 \ + #git \ + #unzip \ + #build-essential \ + #wget && \ + #apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN apt-get -qq update && apt-get install -y \ git \ unzip \ build-essential \ - wget && \ + wget \ + libncurses5-dev \ + libncursesw5-dev \ + autoconf \ + openssl \ + libssl-dev \ + fop \ + xsltproc \ + unixodbc-dev \ + curl && \ apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN wget https://raw.githubusercontent.com/kerl/kerl/master/kerl && \ + chmod a+x kerl && \ + mv kerl /usr/local/bin/ + +RUN kerl build 22.3.4.25 22.3.4.25 +RUN kerl install 22.3.4.25 /bin/22.3.4.25 +RUN . /bin/22.3.4.25/activate +ENV PATH=/bin/22.3.4.25/lib/erl_interface-3.13.2.2/bin:/bin/22.3.4.25/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + # Download and Install Specific Version of Elixir WORKDIR /elixir RUN wget -q https://github.com/elixir-lang/elixir/releases/download/v1.10.2/Precompiled.zip && \ From 6e5b8caabfe8f10cab332320b0a9cd0f1249c20f Mon Sep 17 00:00:00 2001 From: "acernas@brightcove.com" Date: Thu, 9 Feb 2023 17:40:26 -0600 Subject: [PATCH 2/2] Clean up build --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24f24e3..404f5d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,16 +33,6 @@ RUN echo $(openssl version) # See : https://github.com/phusion/baseimage-docker/issues/58 RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections -#RUN echo "deb http://packages.erlang-solutions.com/ubuntu bionic contrib" >> /etc/apt/sources.list && \ - #apt-key adv --fetch-keys http://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc && \ - #apt-get -qq update && apt-get install -y \ - #esl-erlang=1:23.0 \ - #git \ - #unzip \ - #build-essential \ - #wget && \ - #apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* - RUN apt-get -qq update && apt-get install -y \ git \ unzip \