Skip to content

Commit

Permalink
updated signal-cli to version 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard B committed Nov 30, 2019
1 parent 7a3651e commit b0d9226
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.13-buster

ARG SIGNAL_CLI_VERSION=0.6.4
ARG SIGNAL_CLI_VERSION=0.6.5

ENV GIN_MODE=release

Expand Down
11 changes: 9 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ echo ""
read -r -p "Are you sure? [y/N] " response
case "$response" in
[yY][eE][sS]|[yY])
docker buildx build --platform linux/amd64,linux/arm64 -t bbernhard/signal-cli-rest-api:$VERSION .
docker buildx build --platform linux/amd64,linux/arm64 -t bbernhard/signal-cli-rest-api:latest .
docker buildx rm multibuilder

docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

docker buildx create --name multibuilder
docker buildx use multibuilder

docker buildx build --platform linux/amd64,linux/arm64 -t bbernhard/signal-cli-rest-api:$VERSION . --push
docker buildx build --platform linux/amd64,linux/arm64 -t bbernhard/signal-cli-rest-api:latest . --push
;;
*)
echo "Aborting"
Expand Down

0 comments on commit b0d9226

Please sign in to comment.