bullish/prod-build.sh

13 lines
228 B
Bash
Raw Permalink Normal View History

#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR/backend"
docker build -t codingcoffee/bullish-backend .
cd "$DIR/frontend"
docker build -t codingcoffee/bullish-frontend .