mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-06 17:11:55 +00:00
8 lines
305 B
Bash
Executable File
8 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
|