Files
stream-cinema/Dockerfile
Roman Vaníček 116dd2fa35
All checks were successful
continuous-integration/drone/push Build is passing
Hint the port 8080 for docker tools
2024-11-22 12:15:09 +01:00

5 lines
128 B
Docker

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