Skip to content

Commit 6ba59be

Browse files
committed
docker fixes
1 parent d660171 commit 6ba59be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ EXPOSE 5005
77
EXPOSE 5006
88

99
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
10-
WORKDIR /src
10+
WORKDIR /
1111
COPY ["src/Server/Server.csproj", "src/Server/"]
1212
COPY ["src/Application/Application.csproj", "src/Application/"]
1313
COPY ["src/Domain/Domain.csproj", "src/Domain/"]
@@ -18,7 +18,7 @@ COPY ["src/Client/Client.csproj", "src/Client/"]
1818
COPY ["src/Client.Infrastructure/Client.Infrastructure.csproj", "src/Client.Infrastructure/"]
1919
RUN dotnet restore "src/Server/Server.csproj" --disable-parallel
2020
COPY . .
21-
WORKDIR "/src/src/Server"
21+
WORKDIR "src/Server"
2222
RUN dotnet build "Server.csproj" -c Release -o /app/build
2323

2424
FROM build AS publish

0 commit comments

Comments
 (0)