-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# [Nushell](https://www.nushell.sh/) image | ||
|
||
This repository builds plain OCI images from the [Nushell's GitHub releases](https://github.com/nushell/nushell/releases). | ||
|
||
## Details | ||
|
||
- The images are built once per week on Sunday from the `x86_64-unknown-linux-gnu` version. | ||
- Every image is tagged with the corresponding Nushell version, but the latest version also gets the `latest` tag (beware of breaking changes). | ||
- Each image includes the full contents of the release `.tar.gz` in the `/nu/` directory. | ||
- The images are built with a Nushell script: [`build.nu`](./build.nu). | ||
- The images are signed with Sigstore's [cosign](https://github.com/sigstore/cosign) and can be verified with `cosign verify --key cosign.pub ghcr.io/blue-build/nushell-image`. | ||
|
||
## How to use | ||
|
||
```containerfile | ||
FROM ghcr.io/blue-build/nushell-image:0.98.0 as nushell | ||
|
||
FROM fedora:40 | ||
|
||
COPY --from=nushell /nu/nu /usr/bin/nu | ||
|
||
RUN nu --version && nu -c "ls | sort-by size" | ||
``` |