Skip to content

Commit

Permalink
Merge pull request #328 from fs4r/fix-target-framework
Browse files Browse the repository at this point in the history
Fix TargetFramework missing for tpl package #327
  • Loading branch information
vladimir-nikonov authored Oct 31, 2024
2 parents e28d2b0 + a966068 commit d751217
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions install/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@ WORKDIR /app
COPY clio clio
COPY clio.sln clio.sln
COPY README.md README.md

# Change the working directory to /app/clio
WORKDIR /app/clio

# Publish the project, changing the output DLL name to avoid conflicts
RUN dotnet publish -c Release -o /app/published --framework net8.0 /p:AssemblyName=clio-app

RUN dotnet publish ./clio.csproj -c Release -o /app/published --framework net8.0 /p:AssemblyName=clio-app
# Final stage: Use the build stage as the base for the final image
FROM build AS final

Expand Down

0 comments on commit d751217

Please sign in to comment.