Files
stream-cinema/Dockerfile
Roman Vanicek d4b4b0f2d4
All checks were successful
continuous-integration/drone/push Build is passing
Switch back to dotnet 9.0
2024-11-10 23:54:01 +01:00

4 lines
116 B
Docker

FROM mcr.microsoft.com/dotnet/aspnet:9.0
COPY ./out/ /App/
WORKDIR /App
ENTRYPOINT ["dotnet", "StreamCinemaWeb.dll"]