mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
b3c0237ad9
using alpine for the docker instead of ubuntu cuts the size and installation time by quite a bit
9 lines
385 B
Bash
Executable File
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! <<<"
|