aboutsummaryrefslogtreecommitdiff
path: root/docker/build.sh
blob: bfbdd4b57c5208f6a0a1ebb8dd6ee814633314c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Copyright (c) 2020 Johannes Stoelp

if ! docker build -t matcha-box . ; then
    echo "ERR: Failed to build docker image!"
    exit 1
fi

exit 0