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