fs-walle-react-ts/generate-docker.sh

12 lines
226 B
Bash
Raw Permalink Normal View History

2017-08-01 10:50:43 +00:00
#!/bin/bash
2017-08-01 11:24:55 +00:00
if [ ! -d "docker" ]; then
mkdir docker
fi
git submodule init
git submodule update
npm install
npm run build
cp -r build freespeech_walle ./*.py requirements.txt Dockerfile docker/
2017-08-01 11:15:56 +00:00
docker build -t walle-react .