Created
February 20, 2021 14:43
-
-
Save anderson-marques/4f2218ec4e0fe7ebeb74b18c80458902 to your computer and use it in GitHub Desktop.
Dockerized .NET - Development Image
This file contains hidden or 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
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