2024-09-23 16:01:31 +08:00

13 lines
193 B
Bash
Executable File

#!/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 .