Gökhan Gökalp
Software Architect, Blog writer. If you free your mind, you free your code.
Gökhan GÖKALP
08.09.2017
Trendyol Tech Talk
FROM microsoft/dotnet:runtime
WORKDIR /dotnetapp
COPY out .
ENTRYPOINT ["dotnet", "dotnetapp.dll"]
Dockerfile
dotnet restore
dotnet publish -c Release -o out
Restore packages and publish
docker build -t dotnetapp .
docker run -it --rm dotnetapp
Build and run the Docker image
By Gökhan Gökalp
Introduction to .NET Core presentation at Trendyol tech talk.
Software Architect, Blog writer. If you free your mind, you free your code.