8 lines
137 B
Bash
8 lines
137 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -ex
|
||
|
|
||
|
SELF_DIR="$(dirname "$0")"
|
||
|
cd "$SELF_DIR/.."
|
||
|
|
||
|
docker build -t innernet -f "$SELF_DIR/Dockerfile.innernet" .
|