Ask Your Question
0

What is the method to position the dotnet command as the second command in Docker?

asked 2021-08-31 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-03-22 10:00:00 +0000

devzero gravatar image

To position the dotnet command as the second command in Docker, use the following syntax in your Dockerfile:

CMD ["bash", "-c", "dotnet <your_app.dll>"]

This will run the dotnet command within a shell, with bash being the primary command and dotnet being the secondary command. Replace <your_app.dll> with the name of your .NET Core application.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-08-31 11:00:00 +0000

Seen: 9 times

Last updated: Mar 22 '22