From 67278fdca9e09c70ca1911e398ade8cb1a35b62f Mon Sep 17 00:00:00 2001 From: Valentin Viennot Date: Wed, 7 Dec 2022 17:46:06 +0100 Subject: [PATCH] switch to Canonical images as Globalization is required by SqlClient --- src/PublicApi/Dockerfile | 2 +- src/Web/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PublicApi/Dockerfile b/src/PublicApi/Dockerfile index c5b603c..a637ea6 100644 --- a/src/PublicApi/Dockerfile +++ b/src/PublicApi/Dockerfile @@ -1,6 +1,6 @@ #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/nightly/aspnet:6.0-jammy-chiseled AS base +FROM docker.io/ubuntu/dotnet-aspnet:6.0-22.04_edge AS base WORKDIR /app EXPOSE 8080 EXPOSE 4043 diff --git a/src/Web/Dockerfile b/src/Web/Dockerfile index 92a05c0..b24c1c5 100644 --- a/src/Web/Dockerfile +++ b/src/Web/Dockerfile @@ -17,7 +17,7 @@ RUN dotnet restore RUN dotnet publish -c Release -o out -FROM mcr.microsoft.com/dotnet/nightly/aspnet:6.0-jammy-chiseled AS runtime +FROM docker.io/ubuntu/dotnet-aspnet:6.0-22.04_edge AS runtime WORKDIR /app COPY --from=build /app/src/Web/out ./