xf 1 ano atrás
pai
commit
35461f581c
2 arquivos alterados com 29 adições e 0 exclusões
  1. 25 0
      build/.dockerignore
  2. 4 0
      build/Dockerfile

+ 25 - 0
build/.dockerignore

@@ -0,0 +1,25 @@
+**/.classpath
+**/.dockerignore
+**/.env
+**/.git
+**/.gitignore
+**/.project
+**/.settings
+**/.toolstarget
+**/.vs
+**/.vscode
+**/*.*proj.user
+**/*.dbmdl
+**/*.jfm
+**/azds.yaml
+**/bin
+**/charts
+**/docker-compose*
+**/Dockerfile*
+**/node_modules
+**/npm-debug.log
+**/obj
+**/secrets.dev.yaml
+**/values.dev.yaml
+LICENSE
+README.md

+ 4 - 0
build/Dockerfile

@@ -0,0 +1,4 @@
+FROM  mcr.microsoft.com/dotnet/aspnet:8.0
+WORKDIR /app
+COPY out/ .
+ENTRYPOINT ["dotnet", "Push.YiBin.Host.dll"]