dotnet-deploy-k8s/Dockerfile
Mingor(100757) 925bd5f4a5
Some checks failed
dotnet-publish-nuget / Pack-And-Publish (push) Failing after 1m39s
update actions yaml
2024-08-27 18:45:41 +08:00

10 lines
160 B
Docker

FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
RUN ls -l && ls -l dst
COPY dst/* .
EXPOSE 8080
ENTRYPOINT ["dotnet", "dotnet-deploy-k8s.dll"]