From d21637a1f95d364576ab44e04c78e6cd4ce24ec6 Mon Sep 17 00:00:00 2001 From: Sumit Ghosh Date: Thu, 12 Aug 2021 18:58:39 +0530 Subject: [PATCH] Updates docker images to preview 7 --- src/Services/Basket/Basket.API/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/Basket/Basket.API/Dockerfile b/src/Services/Basket/Basket.API/Dockerfile index 9ccc3d982..f5a27b1c7 100644 --- a/src/Services/Basket/Basket.API/Dockerfile +++ b/src/Services/Basket/Basket.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