diff --git a/Dockerfile b/Dockerfile index 1f20248..7e56814 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN dotnet restore # Copy everything else and build COPY src ./ -RUN dotnet publish src/Lykos.csproj -c Release --property:PublishDir=$PWD/out +RUN dotnet publish Lykos.csproj -c Release --property:PublishDir=$PWD/out # Build runtime image FROM mcr.microsoft.com/dotnet/runtime:9.0.0-alpine3.20