File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,16 @@ WORKDIR /app
55FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
66ARG BUILD_CONFIGURATION=Release
77WORKDIR /src
8- COPY ["Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj" , "Nullinside.Cicd.GitHub/" ]
9- RUN dotnet restore "src/Nullinside.Cicd.GitHub.csproj"
8+ RUN ls -a
9+ COPY ["src/Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj" , "Nullinside.Cicd.GitHub/" ]
10+ RUN dotnet restore "Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj"
1011COPY . .
1112WORKDIR "/src/src"
12- RUN dotnet build "Nullinside.Cicd.GitHub.csproj" -c $BUILD_CONFIGURATION -o /app/build
13+ RUN dotnet build "Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub .csproj" -c $BUILD_CONFIGURATION -o /app/build
1314
1415FROM build AS publish
1516ARG BUILD_CONFIGURATION=Release
16- RUN dotnet publish "Nullinside.Cicd.GitHub.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
17+ RUN dotnet publish "Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub .csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
1718
1819FROM base AS final
1920WORKDIR /app
You can’t perform that action at this time.
0 commit comments