Skip to content

Instantly share code, notes, and snippets.

@anderson-marques
Created February 20, 2021 14:43
Show Gist options
  • Save anderson-marques/4f2218ec4e0fe7ebeb74b18c80458902 to your computer and use it in GitHub Desktop.
Save anderson-marques/4f2218ec4e0fe7ebeb74b18c80458902 to your computer and use it in GitHub Desktop.
Dockerized .NET - Development Image
FROM mcr.microsoft.com/dotnet/sdk:3.1-alpine
ENV WORKDIR /app
WORKDIR ${WORKDIR}
COPY dockerized-dotnet.csproj .
RUN dotnet restore
COPY . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment