I developed a web application using asp dotnet, and currently it works for me on IIS, somehow I can run the same application in the docker container,
I am relatively new to Docker, and I played a little and I am familiar with compiling dockers, so I was wondering if I can (pre-rezerezirovat) the application that I developed.
My Dockerfile now looks like this:
FROM microsoft/dotnet:latest
WORKDIR /app
COPY . /app
ENTRYPOINT ["DOTNET","RUN"]
From what I understand, this makes a directory inside my dotnet container and copies the files in the current folder, and the application will run in run mode
source
share