10 lines
187 B
Bash
10 lines
187 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# BUILD
|
|
docker build . -f deploy/Dockerfile -t webhooks:latest
|
|
|
|
# PUBLISH
|
|
docker tag pasta-server marc.sastre.cat/webhooks:latest
|
|
docker push marc.sastre.cat/webhooks
|