From 84685194fd8be006cde79f8cee54feafbf0806ba Mon Sep 17 00:00:00 2001 From: omer_barak Date: Sun, 6 May 2018 13:52:50 +0300 Subject: [PATCH 1/2] using version 1.9.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 544272e..3dcf28c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Stefan Rohe ENV \ COMPILER=ldc \ - COMPILER_VERSION=1.8.0-beta1 + COMPILER_VERSION=1.9.0 RUN apt-get update && apt-get install -y curl libcurl3 build-essential \ && curl -fsS -o /tmp/install.sh https://dlang.org/install.sh \ From 9cb1df4686d6bfddc38743600b8f867d291d71ef Mon Sep 17 00:00:00 2001 From: omer_barak Date: Sun, 6 May 2018 18:31:23 +0300 Subject: [PATCH 2/2] Added libssl to the build container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3dcf28c..efaaf18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ENV \ COMPILER=ldc \ COMPILER_VERSION=1.9.0 -RUN apt-get update && apt-get install -y curl libcurl3 build-essential \ +RUN apt-get update && apt-get install -y curl libcurl3 build-essential libssl-dev\ && curl -fsS -o /tmp/install.sh https://dlang.org/install.sh \ && bash /tmp/install.sh -p /dlang install "${COMPILER}-${COMPILER_VERSION}" \ && rm /tmp/install.sh \