You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
Bash
17 lines
366 B
Bash
2 years ago
|
### 打包前端
|
||
|
# 定位到data-room-ui目录
|
||
|
cd ./data-room-ui
|
||
|
# 执行该目录下的rebuild.sh
|
||
|
sh rebuild.sh
|
||
|
### 打包后端
|
||
|
# 定位到data-room目录
|
||
|
cd ../data-room
|
||
|
# 执行maven打包命令
|
||
|
mvn clean package -Dmaven.test.skip=true -P package
|
||
|
### 打包镜像
|
||
|
# 定位到根目录
|
||
|
cd ..
|
||
|
# 执行docker build命令
|
||
|
#docker build -t gcpass/dataroom:lastest .
|
||
|
|