From 0b2559724a2041b057baf559124b6f5f6f9c8797 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Tue, 15 Nov 2022 17:39:44 +0100 Subject: [PATCH] fix(docker): use proper base Old one doesn't exist anymore, I think Signed-off-by: Sam Therapy --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c6cd2a..ddea49f 100644 --- a/Dockerfile +++ b/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/aspnet:6.0-slim AS base +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443