add users documents

This commit is contained in:
2023-05-23 22:08:56 +08:00
parent c8bf017a70
commit 589940adc2
16 changed files with 987 additions and 72 deletions

8
Server/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:7.0
COPY . /app
WORKDIR /app
EXPOSE 80
ENTRYPOINT ["dotnet", "Server.dll"]