All checks were successful
continuous-integration/drone/push Build is passing
5 lines
122 B
Docker
5 lines
122 B
Docker
FROM mcr.microsoft.com/dotnet/aspnet:9.0
|
|
COPY ./out/ /App/
|
|
WORKDIR /App
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["dotnet", "CinemaWeb.dll"] |