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
5
5
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6
6
ARG BUILD_CONFIGURATION=Release
7
7
WORKDIR /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"
10
11
COPY . .
11
12
WORKDIR "/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
13
14
14
15
FROM build AS publish
15
16
ARG 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
17
18
18
19
FROM base AS final
19
20
WORKDIR /app
You can’t perform that action at this time.
0 commit comments