From ef8b7d279235e41e3fb09ca2b519f6fbfbf109cf Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 13 Apr 2018 17:42:20 -0500 Subject: [PATCH] [nostalgia] Set compiler in dev environment --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79145b28..3fe7d4ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,5 +9,7 @@ RUN dnf install -y findutils ninja-build RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc RUN curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo RUN dnf update -y -RUN dnf install -y compat-openssl10 RUN dnf install -y powershell + +ENV CC clang +ENV CXX clang++