diff --git a/src/Blockcore.Indexer.Angor/Blockcore.Indexer.Angor.csproj b/src/Blockcore.Indexer.Angor/Blockcore.Indexer.Angor.csproj index 67f176b..b5a37fc 100644 --- a/src/Blockcore.Indexer.Angor/Blockcore.Indexer.Angor.csproj +++ b/src/Blockcore.Indexer.Angor/Blockcore.Indexer.Angor.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Blockcore.Indexer.Angor/Dockerfile b/src/Blockcore.Indexer.Angor/Dockerfile index 6c0653b..ed3a53f 100644 --- a/src/Blockcore.Indexer.Angor/Dockerfile +++ b/src/Blockcore.Indexer.Angor/Dockerfile @@ -1,10 +1,11 @@ -FROM mcr.microsoft.com/dotnet/sdk:6.0 AS base +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS base WORKDIR /app -FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build -COPY src/Directory.Build.props Blockcore.Indexer.Core/ +COPY src/Directory.Build.props Blockcore.Indexer.Angor/ COPY src/Blockcore.Indexer.Angor/ Blockcore.Indexer.Angor/ +COPY src/Directory.Build.props Blockcore.Indexer.Core/ COPY src/Blockcore.Indexer.Core/ Blockcore.Indexer.Core/ RUN dotnet build Blockcore.Indexer.Angor/Blockcore.Indexer.Angor.csproj -c Release -o /app/build