mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-06 07:25:53 -05:00
8 lines
305 B
Bash
8 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
|