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 d660171 commit 6ba59beCopy full SHA for 6ba59be
src/Server/Dockerfile
@@ -7,7 +7,7 @@ EXPOSE 5005
7
EXPOSE 5006
8
9
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
10
-WORKDIR /src
+WORKDIR /
11
COPY ["src/Server/Server.csproj", "src/Server/"]
12
COPY ["src/Application/Application.csproj", "src/Application/"]
13
COPY ["src/Domain/Domain.csproj", "src/Domain/"]
@@ -18,7 +18,7 @@ COPY ["src/Client/Client.csproj", "src/Client/"]
18
COPY ["src/Client.Infrastructure/Client.Infrastructure.csproj", "src/Client.Infrastructure/"]
19
RUN dotnet restore "src/Server/Server.csproj" --disable-parallel
20
COPY . .
21
-WORKDIR "/src/src/Server"
+WORKDIR "src/Server"
22
RUN dotnet build "Server.csproj" -c Release -o /app/build
23
24
FROM build AS publish
0 commit comments