mirror of https://github.com/grpc/grpc-web.git
10 lines
407 B
Bash
Executable File
10 lines
407 B
Bash
Executable File
cd "$(dirname "$0")"
|
|
./init_submodules.sh
|
|
cd ..
|
|
make clean
|
|
docker build -t ubuntu_12_04 -f net/grpc/gateway/docker/ubuntu_12_04/Dockerfile .
|
|
CONTAINER_ID=$(docker create ubuntu_12_04)
|
|
docker cp "$CONTAINER_ID:/github/grpc-web/gConnector.zip" net/grpc/gateway/docker/ubuntu_12_04
|
|
docker cp "$CONTAINER_ID:/github/grpc-web/gConnector_static.zip" net/grpc/gateway/docker/ubuntu_12_04
|
|
docker rm "$CONTAINER_ID"
|