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