Created
February 22, 2019 09:53
-
-
Save bogdanbujdea/dfb55cddf0b3f82f8b78d514b135a58c to your computer and use it in GitHub Desktop.
Sample dockerfile with only one stage
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 microsoft/dotnet AS build-env | |
| COPY . /app | |
| RUN ["dotnet", "--info"] | |
| WORKDIR /app/MyApp | |
| RUN ["dotnet", "publish", "--configuration", "Release"] | |
| EXPOSE 80/tcp | |
| ENTRYPOINT ["dotnet", "run"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment