This commit is contained in:
2023-11-06 14:08:17 +08:00
parent 46a1639888
commit 3d18aba8a2
3 changed files with 21 additions and 1 deletions

4
Frontend/Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY ./publish/ .
ENTRYPOINT ["dotnet", "Frontend.dll"]