13 lines
193 B
Bash
Raw Permalink Normal View History

2024-09-23 16:01:31 +08:00
#!/bin/bash
html_dir=../html
html_pkg_dir=./html.tar.gz
if [ -f "$html_pkg_dir" ]; then
rm "$html_pkg_dir"
fi
tar -zcvf ${html_pkg_dir} -C ${html_dir} .
docker build -t aimrt-api-web .