File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/core/ sdk:5.0 AS build-env
1+ FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build-env
22
33WORKDIR /app
44COPY . ./
@@ -26,7 +26,7 @@ RUN dotnet build -c Release \
2626# remove BOM for psql
2727RUN sed -i -e '1s/^\x EF\x BB\x BF//' /app/src/SimplCommerce.WebHost/dbscript.sql
2828
29- FROM mcr.microsoft.com/dotnet/core/ aspnet:5.0
29+ FROM mcr.microsoft.com/dotnet/aspnet:5.0
3030
3131# hack to make postgresql-client install work on slim
3232RUN mkdir -p /usr/share/man/man1 \
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/core/ sdk:5.0 AS build-env
1+ FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build-env
22
33WORKDIR /app
44COPY . ./
@@ -24,7 +24,7 @@ RUN dotnet build -c Release \
2424 && dotnet build -c Release \
2525 && dotnet publish -c Release -o out
2626
27- FROM mcr.microsoft.com/dotnet/core/ aspnet:5.0
27+ FROM mcr.microsoft.com/dotnet/aspnet:5.0
2828
2929RUN apt-get update \
3030 && apt-get install libgdiplus -y \
You can’t perform that action at this time.
0 commit comments