2023-08-28 21:00:35 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
ORG="askiiart"
|
|
|
|
NAME="discord-always-dungeons"
|
|
|
|
ID=$(docker build . -q)
|
|
|
|
|
2023-09-05 20:18:17 -05:00
|
|
|
# Apply patch for Docker
|
|
|
|
git apply docker.patch
|
|
|
|
|
2023-08-28 21:00:35 -05:00
|
|
|
# Could just do -t on the build, but this makes it easier to expand if needed.
|
|
|
|
docker tag ${ID} ${ORG}/${NAME}:latest
|
|
|
|
docker push ${ORG}/${NAME}:latest
|