##Psiphon Console Client README
###Building with Docker
Note that you may need to use sudo docker below, depending on your OS.
#####Create the build image:
docker build --no-cache=true -t psiclient . (this may take some time to complete)psiclient when running: docker images#####Run the build:
cd .. && \
docker run \
--rm \
-v $(pwd):/go/src/github.com/Psiphon-Labs/psiphon-tunnel-core \
psiclient \
/bin/bash -c 'cd /go/src/github.com/Psiphon-Labs/psiphon-tunnel-core/ConsoleClient && ./make.bash' \
&& cd -
When that command completes, the compiled binaries will be located in the bin directory under the current directory. The structure will be:
bin
├── darwin
│ └── psiphon-native-messaging-host-x86_64
├── linux
│ └── psiphon-native-messaging-host-i686
│ └── psiphon-native-messaging-host-x86_64
└── windows
└── psiphon-native-messaging-host-i686.exe
└── psiphon-native-messaging-host-x86_64.exe
See the main README build section