mirror of
https://github.com/brianshea2/meshmap.net.git
synced 2024-11-09 23:24:09 -08:00
11 lines
205 B
Bash
11 lines
205 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
bash "$(dirname "$0")/generate-pb.sh" || exit $?
|
||
|
|
||
|
docker build \
|
||
|
--no-cache \
|
||
|
--pull \
|
||
|
-f "$(dirname "$0")/../Dockerfile.meshobserv" \
|
||
|
-t meshobserv \
|
||
|
"$(dirname "$0")/.."
|