Skip to content

Commit

Permalink
Moved to sdk image and pull dotnet dump
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Elliott committed Jun 23, 2019
1 parent 1223127 commit e066b9b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions images/Dockerfile.alpine
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

0 comments on commit e066b9b

Please sign in to comment.