We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3357348 commit 61e9bb2Copy full SHA for 61e9bb2
Dockerfile
@@ -6,9 +6,9 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6
ARG BUILD_CONFIGURATION=Release
7
WORKDIR /src
8
COPY ["Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj", "Nullinside.Cicd.GitHub/"]
9
-RUN dotnet restore "Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj"
+RUN dotnet restore "src/Nullinside.Cicd.GitHub.csproj"
10
COPY . .
11
-WORKDIR "/src/Nullinside.Cicd.GitHub"
+WORKDIR "/src/src"
12
RUN dotnet build "Nullinside.Cicd.GitHub.csproj" -c $BUILD_CONFIGURATION -o /app/build
13
14
FROM build AS publish
0 commit comments