Skip to content

Commit

Permalink
fix: Update base image
Browse files Browse the repository at this point in the history
This base image does not exist:
FROM mcr.microsoft.com/dotnet/core/sdk:7.0

The "core" must be deleted.
  • Loading branch information
MrDave1999 committed Feb 1, 2024
1 parent 6fc85d2 commit 77e3191
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions EchoBotSample.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 3000

FROM mcr.microsoft.com/dotnet/core/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY . .
WORKDIR /src/Itminus.InDirectLine.Samples/Itminus.InDirectLine.EchoBotApp
Expand Down
4 changes: 2 additions & 2 deletions InDirectLine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 3000

FROM mcr.microsoft.com/dotnet/core/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY . .
WORKDIR /src/Itminus.InDirectLine.Web
Expand Down
4 changes: 2 additions & 2 deletions IntegrationSample.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 3000

FROM mcr.microsoft.com/dotnet/core/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY . .
WORKDIR /src/Itminus.InDirectLine.Samples/Itminus.InDirectLine.IntegrationBotSample
Expand Down

0 comments on commit 77e3191

Please sign in to comment.