Skip to content

Commit

Permalink
Fix missing && on docker demo compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
riclolsen committed Jul 5, 2023
1 parent c4c52c1 commit bd52d88
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions compile-docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,12 @@ services:
cd dotnet/core/2.0 &&
dotnet publish --no-self-contained --runtime linux-x64 -c Release IEC61850.NET.core.2.0 &&
cd iec61850_client &&
dotnet publish --no-self-contained --runtime linux-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin/
"
dotnet publish --no-self-contained --runtime linux-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin/ &&
cd /src/dnp3/Dnp3Client/ &&
dotnet publish --self-contained --runtime win-x64 -p:PublishReadyToRun=true -c Release -o /publish_bin_win/ Dnp3Client.csproj &&
cp Dependencies/OpenSSL/*.dll /publish_bin_win/ "

# NOTICE Dnp3Client is Windows-only, so it can only run in docker/linux using Wine.
# cd /src/dnp3/Dnp3Client/ &&
# dotnet publish --self-contained --runtime win-x64 -p:PublishReadyToRun=false -c Release -o /publish_bin_win/ Dnp3Client.csproj &&
# cp Dependencies/OpenSSL/*.dll /publish_bin_win/"

environment:
- DOTNET_CLI_TELEMETRY_OPTOUT=1
Expand Down

0 comments on commit bd52d88

Please sign in to comment.