Servicii pe docker cu diverse aplicatii: python, node, php, .net

This commit is contained in:
2025-12-12 09:00:05 +00:00
parent 498b01ddd1
commit 3525523167
41 changed files with 468 additions and 9 deletions

5
docker/dotnet/Docker Normal file
View File

@@ -0,0 +1,5 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0
WORKDIR /app
COPY . .
EXPOSE 8088
ENTRYPOINT ["dotnet", "SimpleDotnetServer.dll"]