From c548cb71b68f792360d174a817039a6d1a9d5f35 Mon Sep 17 00:00:00 2001 From: Chris Cheetham Date: Wed, 3 Mar 2021 09:25:03 -0500 Subject: [PATCH] Update Microsoft Docker repo location [#74] --- src/steeltoe-2.5.x--netcoreapp2.1--webapi--csharp/Dockerfile | 4 ++-- src/steeltoe-2.5.x--netcoreapp3.1--webapi--csharp/Dockerfile | 4 ++-- src/steeltoe-3.0.x--net5.0--webapi--csharp/Dockerfile | 4 ++-- src/steeltoe-3.0.x--netcoreapp3.1--webapi--csharp/Dockerfile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/steeltoe-2.5.x--netcoreapp2.1--webapi--csharp/Dockerfile b/src/steeltoe-2.5.x--netcoreapp2.1--webapi--csharp/Dockerfile index 972007a..1c9fd59 100644 --- a/src/steeltoe-2.5.x--netcoreapp2.1--webapi--csharp/Dockerfile +++ b/src/steeltoe-2.5.x--netcoreapp2.1--webapi--csharp/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/core/aspnet:2.1 AS base +FROM mcr.microsoft.com/dotnet/aspnet:2.1 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build +FROM mcr.microsoft.com/dotnet/sdk:2.1 AS build WORKDIR /src COPY ["{{Namespace}}.csproj", "."] RUN dotnet restore "{{Namespace}}.csproj" diff --git a/src/steeltoe-2.5.x--netcoreapp3.1--webapi--csharp/Dockerfile b/src/steeltoe-2.5.x--netcoreapp3.1--webapi--csharp/Dockerfile index ac74b89..a43d95b 100644 --- a/src/steeltoe-2.5.x--netcoreapp3.1--webapi--csharp/Dockerfile +++ b/src/steeltoe-2.5.x--netcoreapp3.1--webapi--csharp/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS base +FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build +FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build WORKDIR /src COPY ["{{Namespace}}.csproj", "."] RUN dotnet restore "{{Namespace}}.csproj" diff --git a/src/steeltoe-3.0.x--net5.0--webapi--csharp/Dockerfile b/src/steeltoe-3.0.x--net5.0--webapi--csharp/Dockerfile index 9e29dec..e2c38ea 100644 --- a/src/steeltoe-3.0.x--net5.0--webapi--csharp/Dockerfile +++ b/src/steeltoe-3.0.x--net5.0--webapi--csharp/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/core/aspnet:5.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/core/sdk:5.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build WORKDIR /src COPY ["{{Namespace}}.csproj", "."] RUN dotnet restore "{{Namespace}}.csproj" diff --git a/src/steeltoe-3.0.x--netcoreapp3.1--webapi--csharp/Dockerfile b/src/steeltoe-3.0.x--netcoreapp3.1--webapi--csharp/Dockerfile index ac74b89..a43d95b 100644 --- a/src/steeltoe-3.0.x--netcoreapp3.1--webapi--csharp/Dockerfile +++ b/src/steeltoe-3.0.x--netcoreapp3.1--webapi--csharp/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS base +FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build +FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build WORKDIR /src COPY ["{{Namespace}}.csproj", "."] RUN dotnet restore "{{Namespace}}.csproj"