Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ MAINTAINER Stefan Rohe <think@hotmail.de>

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 \
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 \
Expand Down