From 4090012dfb77bcf16020e89ed89f7fa3d69e011d Mon Sep 17 00:00:00 2001 From: Peter Toonen Date: Sat, 21 Jan 2017 20:25:26 +0000 Subject: [PATCH] Added restore commands for unzip --- generators/app/templates/dotnet/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generators/app/templates/dotnet/Dockerfile b/generators/app/templates/dotnet/Dockerfile index 8aee6d8..8b69b86 100644 --- a/generators/app/templates/dotnet/Dockerfile +++ b/generators/app/templates/dotnet/Dockerfile @@ -2,9 +2,10 @@ FROM <%= environment === 'debug' ? debugBaseImageName : releaseBaseImageName %>< ENV NUGET_XMLDOC_MODE skip ARG CLRDBG_VERSION=VS2015U2 WORKDIR /clrdbg +RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/* RUN curl -SL https://raw.githubusercontent.com/Microsoft/MIEngine/getclrdbg-release/scripts/GetClrDbg.sh --output GetClrDbg.sh \ && chmod 700 GetClrDbg.sh \ - && ./GetClrDbg.sh $CLRDBG_VERSION \ + && ./GetClrDbg.sh -v $CLRDBG_VERSION \ && rm GetClrDbg.sh<% } %> WORKDIR /app<% if (isWebProject) { %><% if (dotnetVersion === 'RTM') { %> ENV ASPNETCORE_URLS http://*:<%= portNumber %><% } %>