36 lines
841 B
Bash
Executable File
36 lines
841 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [ -d "download" ]; then
|
|
rm -rf download
|
|
fi
|
|
|
|
mkdir download
|
|
cd download || (echo "Unable to change directory" && exit 1)
|
|
|
|
wget https://github.com/lxsang/ant-http/raw/master/dist/antd-1.0.4b.tar.gz
|
|
tar xvzf antd-1.0.4b.tar.gz
|
|
rm antd-1.0.4b.tar.gz
|
|
|
|
wget https://github.com/lxsang/antd-lua-plugin/raw/master/dist/lua-0.5.2b.tar.gz
|
|
tar xvzf lua-0.5.2b.tar.gz
|
|
rm lua-0.5.2b.tar.gz
|
|
|
|
wget https://github.com/lxsang/antd-wterm-plugin/raw/master/dist/wterm-1.0.0b.tar.gz
|
|
tar xvzf wterm-1.0.0b.tar.gz
|
|
rm wterm-1.0.0b.tar.gz
|
|
|
|
git clone --depth 1 https://github.com/lxsang/antd-web-apps
|
|
git clone --depth 1 https://github.com/lxsang/antos
|
|
|
|
cd ../
|
|
|
|
|
|
docker build -t antosaio .
|
|
|
|
if [ -d "download" ]; then
|
|
rm -rf download
|
|
fi
|
|
|
|
mkdir -p dist
|
|
docker save antosaio > dist/antosaio.tar
|
|
# sudo docker run -p 8080:80 -it antosaoi /bin/sh |