Uguu/docker_build.sh
nokonoko b3c0237ad9 docker support added
using alpine for the docker instead of ubuntu cuts the size and installation time by quite a bit
2022-04-17 15:14:43 +02:00

9 lines
385 B
Bash
Executable file

#!/bin/bash
echo ">>> BUILDING UGUU CONTAINER <<<"
make UGUU_RELEASE_VER=$(cat package.json | grep version | cut -d '"' -f4) DOCKER_TAG=$(cat package.json | grep version | cut -d '"' -f4) build-image
echo ">>> DONE! <<<"
echo ">>> Starting Uguu container! <<<"
make DOCKER_TAG=$(cat package.json | grep version | cut -d '"' -f4) CONTAINER_NAME=uguu run-container
echo ">>> DONE! <<<"