Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion create_appliance_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fi
buildah config --label maintainer="James Fuller <[email protected]>" $ctr
buildah config --label name="${image_name}" $ctr
buildah config --label version="${release_tag}" $ctr
buildah config --label docker.cmd="podman run -it quay.io/curl/${IMAGE_NAME_DEFAULT}:${release_tag}" $ctr
buildah config --label docker.cmd="podman run -it quay.io/curl/${image_name}:${release_tag}" $ctr

# assumes base image has setup curl_user
buildah config --user curl_user $ctr
Expand Down
2 changes: 1 addition & 1 deletion create_base_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ctrmnt=$(buildah mount $ctr)
buildah config --label maintainer="James Fuller <[email protected]>" $ctr
buildah config --label name="${image_name}" $ctr
buildah config --label version="${release_tag}" $ctr
buildah config --label docker.cmd="podman run -it quay.io/curl/${IMAGE_NAME_DEFAULT}:${release_tag}" $ctr
buildah config --label docker.cmd="podman run -it quay.io/curl/${image_name}:${release_tag}" $ctr

# determine dist package manager
if [[ "$dist" =~ .*"alpine".* ]]; then
Expand Down
Loading