Skip to content

Instantly share code, notes, and snippets.

@cradle77
Created June 12, 2019 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cradle77/d9362d4302378696bc34033ceb4d8008 to your computer and use it in GitHub Desktop.
Save cradle77/d9362d4302378696bc34033ceb4d8008 to your computer and use it in GitHub Desktop.
#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
FROM mcr.microsoft.com/dotnet/core/sdk:3.0
# Install git, process tools
RUN apt-get update && apt-get -y install git procps
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
RUN dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.0.0-preview5-19227-01
# Set the default shell to bash instead of sh
ENV SHELL /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment