9 lines
229 B
Bash
Executable File
9 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
CURR=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
docker build -t ${REGISTRY}webrecorder/browsertrix-emails:latest $CURR/../emails/
|
|
|
|
if [ -n "$REGISTRY" ]; then
|
|
docker push ${REGISTRY}webrecorder/browsertrix-emails
|
|
fi
|