From a2b7a78f530950138695d765996deb1f24116396 Mon Sep 17 00:00:00 2001 From: dsanz Date: Tue, 12 Dec 2017 16:33:41 +0100 Subject: [PATCH] change sdk build image --- docker-compose.ci.build.yml | 2 +- src/Services/Basket/Basket.API/Dockerfile | 2 +- src/Services/Catalog/Catalog.API/Dockerfile | 2 +- src/Services/Identity/Identity.API/Dockerfile | 2 +- src/Services/Location/Locations.API/Dockerfile | 2 +- src/Services/Marketing/Marketing.API/Dockerfile | 2 +- src/Services/Ordering/Ordering.API/Dockerfile | 2 +- src/Services/Payment/Payment.API/Dockerfile | 2 +- src/Web/WebMVC/Dockerfile | 2 +- src/Web/WebSPA/Dockerfile | 2 +- src/Web/WebStatus/Dockerfile | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docker-compose.ci.build.yml b/docker-compose.ci.build.yml index ebee57db1..9740acc27 100644 --- a/docker-compose.ci.build.yml +++ b/docker-compose.ci.build.yml @@ -2,7 +2,7 @@ version: '3' services: ci-build: - image: microsoft/aspnetcore-build:2.0.2 #Depending on the bug below, you can also try this other SDK image: microsoft/aspnetcore-build:1.0-2.0-2017-10 or microsoft/aspnetcore-build:1.0-2.0 + image: microsoft/aspnetcore-build:2.0.2.2 #Depending on the bug below, you can also try this other SDK image: microsoft/aspnetcore-build:1.0-2.0-2017-10 or microsoft/aspnetcore-build:1.0-2.0 volumes: - .:/src - ./cli-linux:/cli-linux diff --git a/src/Services/Basket/Basket.API/Dockerfile b/src/Services/Basket/Basket.API/Dockerfile index 5e479cde0..7e322bbcc 100644 --- a/src/Services/Basket/Basket.API/Dockerfile +++ b/src/Services/Basket/Basket.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Basket/Basket.API/Basket.API.csproj src/Services/Basket/Basket.API/ diff --git a/src/Services/Catalog/Catalog.API/Dockerfile b/src/Services/Catalog/Catalog.API/Dockerfile index 498263786..ed2e36e99 100644 --- a/src/Services/Catalog/Catalog.API/Dockerfile +++ b/src/Services/Catalog/Catalog.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Catalog/Catalog.API/Catalog.API.csproj src/Services/Catalog/Catalog.API/ diff --git a/src/Services/Identity/Identity.API/Dockerfile b/src/Services/Identity/Identity.API/Dockerfile index e50625cf2..be7248e68 100644 --- a/src/Services/Identity/Identity.API/Dockerfile +++ b/src/Services/Identity/Identity.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Identity/Identity.API/Identity.API.csproj src/Services/Identity/Identity.API/ diff --git a/src/Services/Location/Locations.API/Dockerfile b/src/Services/Location/Locations.API/Dockerfile index 56bef128d..f309e3bb7 100644 --- a/src/Services/Location/Locations.API/Dockerfile +++ b/src/Services/Location/Locations.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Location/Locations.API/Locations.API.csproj src/Services/Location/Locations.API/ diff --git a/src/Services/Marketing/Marketing.API/Dockerfile b/src/Services/Marketing/Marketing.API/Dockerfile index 9c5ba08e2..4146a8826 100644 --- a/src/Services/Marketing/Marketing.API/Dockerfile +++ b/src/Services/Marketing/Marketing.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Marketing/Marketing.API/Marketing.API.csproj src/Services/Marketing/Marketing.API/ diff --git a/src/Services/Ordering/Ordering.API/Dockerfile b/src/Services/Ordering/Ordering.API/Dockerfile index 601e0836b..f2de4b42f 100644 --- a/src/Services/Ordering/Ordering.API/Dockerfile +++ b/src/Services/Ordering/Ordering.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Ordering/Ordering.API/Ordering.API.csproj src/Services/Ordering/Ordering.API/ diff --git a/src/Services/Payment/Payment.API/Dockerfile b/src/Services/Payment/Payment.API/Dockerfile index eacf572d6..b77281a10 100644 --- a/src/Services/Payment/Payment.API/Dockerfile +++ b/src/Services/Payment/Payment.API/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Services/Payment/Payment.API/Payment.API.csproj src/Services/Payment/Payment.API/ diff --git a/src/Web/WebMVC/Dockerfile b/src/Web/WebMVC/Dockerfile index 0b2ab744f..91133019b 100644 --- a/src/Web/WebMVC/Dockerfile +++ b/src/Web/WebMVC/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Web/WebMVC/WebMVC.csproj src/Web/WebMVC/ diff --git a/src/Web/WebSPA/Dockerfile b/src/Web/WebSPA/Dockerfile index 7142d5f4f..7455cfb25 100644 --- a/src/Web/WebSPA/Dockerfile +++ b/src/Web/WebSPA/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Web/WebSPA/WebSPA.csproj src/Web/WebSPA/ diff --git a/src/Web/WebStatus/Dockerfile b/src/Web/WebStatus/Dockerfile index f69f0853d..1b8e159b7 100644 --- a/src/Web/WebStatus/Dockerfile +++ b/src/Web/WebStatus/Dockerfile @@ -2,7 +2,7 @@ FROM microsoft/aspnetcore:2.0 AS base WORKDIR /app EXPOSE 80 -FROM microsoft/aspnetcore-build:2.0 AS build +FROM microsoft/aspnetcore-build:2.0.2.2.2 AS build WORKDIR /src COPY eShopOnContainers-ServicesAndWebApps.sln ./ COPY src/Web/WebStatus/WebStatus.csproj src/Web/WebStatus/