-
Notifications
You must be signed in to change notification settings - Fork 3
Bump to bcvk 0.7.0 #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| # These aren't packages, just low-dependency binaries dropped in /usr/local/bin | ||
| # so we can fetch them independently in a separate build. | ||
| ARG base=docker.io/library/debian:sid | ||
| FROM $base as base | ||
|
Check warning on line 4 in devenv/Containerfile.debian
|
||
| # Life is too short to care about dash | ||
| RUN ln -sfr /bin/bash /bin/sh | ||
| RUN <<EORUN | ||
|
|
@@ -25,11 +25,11 @@ | |
| apt -y update | ||
| EORUN | ||
|
|
||
| FROM base as tools | ||
|
Check warning on line 28 in devenv/Containerfile.debian
|
||
| # renovate: datasource=github-releases depName=block/goose | ||
| ARG gooseversion=v1.11.1 | ||
| # renovate: datasource=github-releases depName=bootc-dev/bcvk | ||
| ARG bcvkversion=v0.5.3 | ||
| ARG bcvkversion=v0.7.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've noticed an inconsistency in how the |
||
| RUN <<EORUN | ||
| set -xeuo pipefail | ||
| arch=$(arch) | ||
|
|
@@ -58,7 +58,7 @@ | |
| fi | ||
| EORUN | ||
|
|
||
| FROM base as rust | ||
|
Check warning on line 61 in devenv/Containerfile.debian
|
||
| RUN <<EORUN | ||
| set -xeuo pipefail | ||
| # Setup rust; the idea here though is we install system-wide into /usr/local | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version is hardcoded. To improve maintainability and ensure it's updated automatically in the future, it would be beneficial to make it manageable by Renovate. You could add a
# renovate: ...comment on the line above this one, similar to how it's done indevenv/Containerfile.debian. This would require a corresponding regex manager configuration inrenovate-shared-config.jsonto parse shell variable exports.