Browse Source

Merge branch 'netcore2' of https://github.com/dotnet-architecture/eShopOnContainers into netcore2

pull/309/head
Ramón Tomás 7 years ago
parent
commit
3a9e15ba87
9 changed files with 13 additions and 13 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Dockerfile.nanowin
  2. +1
    -1
      src/Services/Catalog/Catalog.API/Dockerfile.nanowin
  3. +2
    -2
      src/Services/Location/Locations.API/Dockerfile.nanowin
  4. +2
    -2
      src/Services/Marketing/Marketing.API/Dockerfile.nanowin
  5. +1
    -1
      src/Services/Ordering/Ordering.API/Dockerfile.nanowin
  6. +2
    -2
      src/Services/Payment/Payment.API/Dockerfile.nanowin
  7. +1
    -1
      src/Web/WebMVC/Dockerfile.nanowin
  8. +1
    -1
      src/Web/WebSPA/Dockerfile.nanowin
  9. +2
    -2
      src/Web/WebStatus/Dockerfile.nanowin

+ 1
- 1
src/Services/Basket/Basket.API/Dockerfile.nanowin View File

@ -1,4 +1,4 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app


+ 1
- 1
src/Services/Catalog/Catalog.API/Dockerfile.nanowin View File

@ -1,4 +1,4 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app


+ 2
- 2
src/Services/Location/Locations.API/Dockerfile.nanowin View File

@ -1,8 +1,8 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app
RUN set-itemproperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord
EXPOSE 80
COPY ${source:-obj/Docker/publish} .
ENTRYPOINT ["dotnet", "Basket.API.dll"]
ENTRYPOINT ["dotnet", "Locations.API.dll"]

+ 2
- 2
src/Services/Marketing/Marketing.API/Dockerfile.nanowin View File

@ -1,8 +1,8 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app
RUN set-itemproperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord
EXPOSE 80
COPY ${source:-obj/Docker/publish} .
ENTRYPOINT ["dotnet", "Basket.API.dll"]
ENTRYPOINT ["dotnet", "Marketing.API.dll"]

+ 1
- 1
src/Services/Ordering/Ordering.API/Dockerfile.nanowin View File

@ -1,4 +1,4 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app


+ 2
- 2
src/Services/Payment/Payment.API/Dockerfile.nanowin View File

@ -1,8 +1,8 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app
RUN set-itemproperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord
EXPOSE 80
COPY ${source:-obj/Docker/publish} .
ENTRYPOINT ["dotnet", "Basket.API.dll"]
ENTRYPOINT ["dotnet", "Payment.API.dll"]

+ 1
- 1
src/Web/WebMVC/Dockerfile.nanowin View File

@ -1,4 +1,4 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app


+ 1
- 1
src/Web/WebSPA/Dockerfile.nanowin View File

@ -1,4 +1,4 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app


+ 2
- 2
src/Web/WebStatus/Dockerfile.nanowin View File

@ -1,8 +1,8 @@
FROM microsoft/dotnet:1.1-runtime-nanoserver
FROM microsoft/dotnet:2.0-runtime-nanoserver
SHELL ["powershell"]
ARG source
WORKDIR /app
RUN set-itemproperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord
EXPOSE 80
COPY ${source:-obj/Docker/publish} .
ENTRYPOINT ["dotnet", "WebMVC.dll"]
ENTRYPOINT ["dotnet", "WebStatus.dll"]

Loading…
Cancel
Save