diff --git a/build/BuildDefaults.props b/build/BuildDefaults.props
index 053ea0a83..1f26ed860 100644
--- a/build/BuildDefaults.props
+++ b/build/BuildDefaults.props
@@ -33,7 +33,6 @@
NU1701;NU5104
true
-
-
+ true
diff --git a/build/package/Installer.DEB.proj b/build/package/Installer.DEB.proj
index 51de5c615..a8c00c921 100644
--- a/build/package/Installer.DEB.proj
+++ b/build/package/Installer.DEB.proj
@@ -94,7 +94,6 @@
UseHardlinksIfPossible="False" />
-
@@ -129,6 +128,9 @@
ToolPath="$(DebianInstalledDirectory)" />
+
+
+
diff --git a/scripts/docker/debian/Dockerfile b/scripts/docker/debian/Dockerfile
index d54afeb0e..4b5515ec0 100644
--- a/scripts/docker/debian/Dockerfile
+++ b/scripts/docker/debian/Dockerfile
@@ -4,47 +4,16 @@
#
# Dockerfile that creates a container suitable to build dotnet-cli
-FROM debian:jessie
+FROM microsoft/dotnet-buildtools-prereqs:debian-8.2-debpkg-d770b8b-20180628122423
# Misc Dependencies for build
-RUN apt-get update && \
+RUN rm -rf /var/lib/apt/lists/* && \
+ apt-get update && \
apt-get -qqy install \
- curl \
- unzip \
- gettext \
sudo && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
-# This could become a "microsoft/coreclr" image, since it just installs the dependencies for CoreCLR (and stdlib)
-RUN apt-get update &&\
- apt-get -qqy install \
- libunwind8 \
- libkrb5-3 \
- libicu52 \
- liblttng-ust0 \
- libssl1.0.0 \
- zlib1g \
- libuuid1 && \
- apt-get clean && \
- rm -rf /var/lib/apt/lists/*
-
-# Install Build Prereqs
-RUN apt-get update && \
- apt-get -qqy install \
- debhelper \
- build-essential \
- devscripts \
- git \
- cmake \
- clang-3.5 && \
- apt-get clean && \
- rm -rf /var/lib/apt/lists/*
-
-# Use clang as c++ compiler
-RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-3.5 100
-RUN update-alternatives --set c++ /usr/bin/clang++-3.5
-
# Setup User to match Host User, and give superuser permissions
ARG USER_ID=0
RUN useradd -m code_executor -u ${USER_ID} -g sudo