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.
11 lines
350 B
11 lines
350 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# fine-digit-edu-webui-old
|
||
|
set -ex \
|
||
|
&& yarn build:test \
|
||
|
&& docker build -f docker/Dockerfile \
|
||
|
-t registry.cn-shanghai.aliyuncs.com/frbbs/fine-digit-edu-webui-old:latest-snapshot \
|
||
|
--build-arg DIST_DIR=test \
|
||
|
. \
|
||
|
&& docker push registry.cn-shanghai.aliyuncs.com/frbbs/fine-digit-edu-webui-old:latest-snapshot
|