Skip to content

Commit 61e9bb2

Browse files
Dockerfile: Fixing paths to files
1 parent 3357348 commit 61e9bb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
66
ARG BUILD_CONFIGURATION=Release
77
WORKDIR /src
88
COPY ["Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj", "Nullinside.Cicd.GitHub/"]
9-
RUN dotnet restore "Nullinside.Cicd.GitHub/Nullinside.Cicd.GitHub.csproj"
9+
RUN dotnet restore "src/Nullinside.Cicd.GitHub.csproj"
1010
COPY . .
11-
WORKDIR "/src/Nullinside.Cicd.GitHub"
11+
WORKDIR "/src/src"
1212
RUN dotnet build "Nullinside.Cicd.GitHub.csproj" -c $BUILD_CONFIGURATION -o /app/build
1313

1414
FROM build AS publish

0 commit comments

Comments
 (0)