Skip to content

Commit f0f7776

Browse files
committed
Add full repo path in hope this will fix it.
1 parent 0d613db commit f0f7776

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ShowcaseProject/ShowcaseFrontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ CMD ["dotnet", "watch", "run", "--project", "/app/ShowcaseFrontend/ShowcaseFront
2121
# Build stage for production
2222
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
2323
WORKDIR /src
24-
COPY ShowcaseFrontend/ShowcaseFrontend.csproj ShowcaseFrontend/
24+
COPY ShowcaseProject/ShowcaseFrontend/ShowcaseFrontend.csproj ShowcaseFrontend/
2525
RUN dotnet restore "./ShowcaseFrontend/ShowcaseFrontend.csproj"
26-
COPY . .
26+
COPY ShowcaseProject/ShowcaseFrontend/. ShowcaseFrontend/
2727
WORKDIR "/src/ShowcaseFrontend"
2828
RUN dotnet build "./ShowcaseFrontend.csproj" -c Release -o /app/build
2929

0 commit comments

Comments
 (0)