mirror of https://github.com/OpenVidu/openvidu.git
20 lines
527 B
Bash
Executable File
20 lines
527 B
Bash
Executable File
# Copy compiled openvidu-server.jar
|
|
cp ../../openvidu-server/target/openvidu-server-"$1".jar ./openvidu-server.jar
|
|
|
|
# Build and copy openvidu-testapp static files
|
|
cd ../
|
|
ng build
|
|
cp -a dist/. ./docker/web/
|
|
cd docker
|
|
|
|
# Modify WebSocket protocol in app.js for allowing both ngrok and localhost connections
|
|
sed -i 's/OV\.initSession("wss:\/\/"/OV\.initSession("ws:\/\/"/g' ./web/app.js
|
|
|
|
# Build docker image
|
|
docker build -t openvidu/testapp .
|
|
|
|
# Delete unwanted files
|
|
rm -rf ./web
|
|
rm -rf ./openvidu-server
|
|
rm openvidu-server.jar
|