-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved to sdk image and pull dotnet dump
- Loading branch information
Joe Elliott
committed
Jun 23, 2019
1 parent
1223127
commit e066b9b
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.5-alpine3.9 | ||
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.300-alpine3.9 | ||
|
||
WORKDIR /root | ||
|
||
ENV PATH="${PATH}:/root/.dotnet/tools" | ||
|
||
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories \ | ||
&& apk update \ | ||
&& apk upgrade \ | ||
&& apk add bash \ | ||
ncurses \ | ||
perf \ | ||
lldb \ | ||
git \ | ||
perl \ | ||
&& rm -rf /var/cache/apk/* \ | ||
&& git clone --depth=1 https://github.com/BrendanGregg/FlameGraph | ||
&& git clone --depth=1 https://github.com/BrendanGregg/FlameGraph \ | ||
&& dotnet tool install -g dotnet-dump --version 1.0.4-preview6.19311.1 |