diff --git a/src/InterfaceForward.Api/Dockerfile b/src/InterfaceForward.Api/Dockerfile index cd4a356..f0d4a58 100644 --- a/src/InterfaceForward.Api/Dockerfile +++ b/src/InterfaceForward.Api/Dockerfile @@ -3,7 +3,7 @@ ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY . /src RUN dotnet restore "src/InterfaceForward.Api/InterfaceForward.Api.csproj" -WORKDIR "/src/InterfaceForward.Api" +WORKDIR "/src/src/InterfaceForward.Api" RUN dotnet build "InterfaceForward.Api.csproj" -c $BUILD_CONFIGURATION -o /app/build FROM base AS publish