You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
259 B
14 lines
259 B
3 years ago
|
#!/bin/bash
|
||
|
#
|
||
|
#
|
||
|
w_path=`pwd`
|
||
|
s_path=`dirname ${w_path}`
|
||
|
|
||
|
#first build fir_client
|
||
|
docker pull node:14.17.3
|
||
|
docker run --rm -v ${s_path}/fir_client:/fir_client -it node:14.17.3 sh /fir_client/build.sh
|
||
|
|
||
|
## secode build fir_ser
|
||
|
cd ../
|
||
|
docker build . -t flyapps
|