Skip to content

Commit

Permalink
Fix docker compile script, remove bin&obj dirs to avoid conflict in s…
Browse files Browse the repository at this point in the history
…rc folders (dotnet).
  • Loading branch information
riclolsen committed Sep 15, 2024
1 parent 1c8798d commit 47d5ed4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compile-docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
cd /src/lib60870.netcore/iec104server/ &&
dotnet publish --self-contained --runtime linux-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin/ &&
rm -rf obj bin &&
cd /src/lib60870.netcore/lib60870.netcore/
cd /src/lib60870.netcore/lib60870.netcore/ &&
rm -rf obj bin &&
cd /src/OPC-UA-Client/ &&
dotnet publish --self-contained --runtime linux-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin/ &&
Expand All @@ -46,8 +46,8 @@ services:
rm -rf obj bin &&
cd /src/libiec61850/dotnet/core/2.0/IEC61850.NET.core.2.0/ &&
rm -rf obj bin &&
cd /src/libiec61850
rm -rf .install
cd /src/libiec61850 &&
rm -rf .install &&
cd /src/OPC-DA-Client/ &&
dotnet publish --self-contained --runtime win-x64 -p:PublishReadyToRun=true -f net8.0-windows -c Release -o /publish_bin_win/ OPC-DA-Client.csproj &&
rm -rf obj bin &&
Expand Down

0 comments on commit 47d5ed4

Please sign in to comment.