8 lines
215 B
Bash
Executable File
8 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#MISE description="Build and push mediamtx image"
|
|
|
|
set -euo pipefail
|
|
|
|
docker build -f build/mediamtx.Dockerfile -t netfluxio/mediamtx-alpine:latest .
|
|
docker push netfluxio/mediamtx-alpine:latest
|