-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return image id after pulling helper images
Also refactor the pull helper image functions to support a single repository with multiple variant tags. Change-type: minor Signed-off-by: Kyle Harding <[email protected]>
- Loading branch information
Showing
10 changed files
with
55 additions
and
92 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,9 +1,10 @@ | ||
ARG NAMESPACE="balena" | ||
ARG TAG="latest" | ||
FROM ${NAMESPACE}/balena-push-env:${TAG} | ||
ARG HELPER_IMAGE_REPO="ghcr.io/balena-os/balena-yocto-scripts" | ||
ARG TAG=master | ||
FROM ${HELPER_IMAGE_REPO}:${TAG}-balena-push-env | ||
|
||
RUN apt-get update && apt-get install -y python3-pip udev && rm -rf /var/lib/apt/lists/* | ||
RUN pip3 install awscli | ||
|
||
COPY include/balena-api.inc include/balena-lib.inc entry_scripts/balena-generate-ami.sh / | ||
WORKDIR / | ||
∂ |
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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