Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Geodan/i3dm.export
Browse files Browse the repository at this point in the history
  • Loading branch information
bertt committed Aug 1, 2024
2 parents a9e50fa + c601905 commit b1e7277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
WORKDIR /src
COPY . .
WORKDIR src
RUN dotnet build "i3dm.export.csproj" -c Release
RUN dotnet publish "i3dm.export.csproj" -c Release -o /app

FROM mcr.microsoft.com/dotnet/runtime:8.0
WORKDIR /app
COPY --from=build /app /app/
ENTRYPOINT ["dotnet", "i3dm.export.dll"]
ENTRYPOINT ["dotnet", "i3dm.export.dll"]

0 comments on commit b1e7277

Please sign in to comment.