From df610bc54c787bbf3552b9e3f4b9eebdd3def872 Mon Sep 17 00:00:00 2001 From: Sumit Ghosh Date: Mon, 16 Aug 2021 14:52:45 +0530 Subject: [PATCH] Updated docker file to preview version to 7 --- src/Services/Identity/Identity.API/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/Identity/Identity.API/Dockerfile b/src/Services/Identity/Identity.API/Dockerfile index c0a254bf0..0d7a78513 100644 --- a/src/Services/Identity/Identity.API/Dockerfile +++ b/src/Services/Identity/Identity.API/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/nightly/aspnet:6.0.0-preview.6 AS base +FROM mcr.microsoft.com/dotnet/nightly/aspnet:6.0.0-preview.7 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/nightly/sdk:6.0.100-preview.6 AS build +FROM mcr.microsoft.com/dotnet/nightly/sdk:6.0.100-preview.7 AS build WORKDIR /src # It's important to keep lines from here down to "COPY . ." identical in all Dockerfiles