dotnet-deploy-k8s/Dockerfile
Mingor(100757) 066f817a16
Some checks failed
dotnet-publish-nuget / Pack-And-Publish (push) Failing after 1m16s
update actions yaml
2024-08-27 18:58:37 +08:00

10 lines
160 B
Docker

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