DEV Community

Kaan Karakaya
Kaan Karakaya

Posted on

1

How to build Asp.Net core app in docker

Today I show you how to dockerize the Asp.Net core apps for Linux machines.

First, we have to create the Asp.net app. You can clone my repo if you want. Then create Dockerfile in the location where the Solution is.

Dockerfile

Then build the app with docker.

docker build -t netcore:v1 .

To run the docker image

docker run -p 80:80 netcore:v1 --server.urls http://0.0.0.0:80

Top comments (0)

Image of Quadratic

The best Excel alternative with Python built-in

Quadratic is the all-in-one, browser-based AI spreadsheet that goes beyond traditional formulas for powerful visualizations and fast analysis.

Try Quadratic free

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay