-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:mynttt/UpdateTool
- Loading branch information
Showing
3 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.40.4.8679-424562606 | ||
1.41.1.9057-af5eaea7a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
#!/bin/bash | ||
# Preconditions: https://netfuture.ch/2020/05/multi-arch-docker-image-easy/ | ||
|
||
# Big fuck up; no versioned docker images in the past lmao - use latest to push as in the past | ||
docker buildx build --progress plain --platform linux/amd64,linux/arm64/v8 --builder docker-multiarch --no-cache -t mynttt/updatetool:latest -f updatetool-docker/Dockerfile . --push | ||
|
||
# But now also create a tagged release for the future | ||
TAG=$(cat VERSION) | ||
docker buildx build --progress plain --platform linux/amd64,linux/arm64/v8 --builder docker-multiarch --no-cache -t "mynttt/updatetool:$TAG" -f updatetool-docker/Dockerfile . --push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters