Replies: 3 comments 12 replies
-
So we could support supplying an array into the version key in the recipe. Honestly wouldn't be too hard to add. |
Beta Was this translation helpful? Give feedback.
-
I was thinking we could do something like this in a # image will be published to ghcr.io/<user>/<name>
name: template
# description will be included in the image's metadata
description: This is my personal OS image.
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-main
image-version: 39 # latest is also supported if you want new updates ASAP
image-tags:
- latest
- 39 keeping the recipe.yml files seperate makes sense because packages can be different between them, behavior, versioning, etc # image will be published to ghcr.io/<user>/<name>
name: template
# description will be included in the image's metadata
description: This is my personal OS image.
# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-main
image-version: 39 # latest is also supported if you want new updates ASAP
image-tags:
- gts
- 38 |
Beta Was this translation helpful? Give feedback.
-
Building from Fedora 38 vs building from Fedora 39, or Rawhide, are fundamentally different images, if things can be shared between the images, you use It would be nice to auto-tag the fedora version and |
Beta Was this translation helpful? Give feedback.
-
...and how to tackle them?
I can think of one:
latest
wont be the latest version anymore, rather the image whose build completed later. The only way to solve this is two differently named images, which isn't nice.Beta Was this translation helpful? Give feedback.
All reactions