Browse Source

Fallback to aspnetcore-build:2.0.5-2.1.4 until issue with aspnetcore-build:2.0 is solved: https://github.com/dotnet-architecture/eShopOnContainers/issues/543

pull/546/head
Cesar De la Torre Llorente 6 years ago
parent
commit
c17ecfa16a
11 changed files with 12 additions and 11 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Dockerfile
  2. +1
    -1
      src/Services/Catalog/Catalog.API/Dockerfile
  3. +1
    -1
      src/Services/Identity/Identity.API/Dockerfile
  4. +1
    -1
      src/Services/Location/Locations.API/Dockerfile
  5. +1
    -1
      src/Services/Marketing/Marketing.API/Dockerfile
  6. +1
    -1
      src/Services/Ordering/Ordering.API/Dockerfile
  7. +1
    -1
      src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile
  8. +1
    -1
      src/Services/Payment/Payment.API/Dockerfile
  9. +1
    -1
      src/Web/WebMVC/Dockerfile
  10. +1
    -1
      src/Web/WebSPA/Dockerfile
  11. +2
    -1
      src/Web/WebStatus/Dockerfile

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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


+ 1
- 1
src/Services/Identity/Identity.API/Dockerfile View File

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


+ 1
- 1
src/Services/Marketing/Marketing.API/Dockerfile View File

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


+ 1
- 1
src/Services/Ordering/Ordering.BackgroundTasks/Dockerfile View File

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


+ 1
- 1
src/Services/Payment/Payment.API/Dockerfile View File

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


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

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503


+ 2
- 1
src/Web/WebStatus/Dockerfile View File

@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0.3 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0 AS build
FROM microsoft/aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503
@ -16,3 +16,4 @@ FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "WebStatus.dll"]

Loading…
Cancel
Save