mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
29bb93f399
Support re-connecting after going / starting offline.
7 lines
305 B
Bash
7 lines
305 B
Bash
#!/bin/bash
|
|
version=$(cat VERSION)
|
|
|
|
docker build -t revoltchat/client:${version} . &&
|
|
docker tag revoltchat/client:${version} revoltchat/client:latest &&
|
|
docker push revoltchat/client:${version} &&
|
|
docker push revoltchat/client:latest
|