8 lines
250 B
Docker
8 lines
250 B
Docker
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:7.0
|
|
COPY . /app
|
|
WORKDIR /app
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["dotnet", "Server.dll"] |