Fix dockerfile output path

This commit is contained in:
Slendy 2023-05-29 20:08:37 -05:00
parent 2c69644beb
commit c8c54d78de
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -13,7 +13,7 @@ RUN dotnet sln list | grep ".csproj" \
RUN dotnet restore
COPY . .
RUN dotnet publish -c Release --property:OutputPath=/ProjectLighthouse/publish --no-restore
RUN dotnet publish -c Release --property:OutputPath=/ProjectLighthouse/publish/ --no-restore
# Final running container
FROM mcr.microsoft.com/dotnet/aspnet:7.0-alpine AS final