dockerfile simple image build and run in bash mode
dockerfile
FROM ubuntu:latest
RUN apt update && apt install -y --no-install-recommends \
curl \
tar \
&& rm -rf /var/lib/apt/lists/*
docker run --rm -it --entrypoint bash dotnetprofiler
dockerfile
docker run --rm -it --entrypoint bash dotnetprofiler
Comments