Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Added restore commands for unzip #129

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion generators/app/templates/dotnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 %><% } %>
Expand Down