-
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.
feat(bun): new container image (#53)
- Loading branch information
Showing
5 changed files
with
53 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
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 |
---|---|---|
|
@@ -79,6 +79,9 @@ jobs: | |
- name: golang | ||
path: golang | ||
|
||
- name: bun | ||
path: bun | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
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 @@ | ||
* |
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,19 @@ | ||
FROM docker.io/oven/bun:1.0.34-alpine | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/bun" \ | ||
org.opencontainers.image.description="An all-in-one JavaScript runtime & toolkit designed for speed, complete with a bundler, test runner, and Node.js-compatible package manager, packaged by Alwatr." \ | ||
org.opencontainers.image.base.name="docker.io/oven/bun:1.0.34-alpine" \ | ||
org.opencontainers.image.version="1.0.34" \ | ||
org.opencontainers.image.ref.name="1.0.34" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.revision=${BUILD_REV} \ | ||
org.opencontainers.image.vendor="Alwatr" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/next/bun" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/next/bun" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/next/bun" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" \ | ||
cloud.alwatr.image.version.full="1.0.34" \ | ||
cloud.alwatr.image.version.short="1" |
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,19 @@ | ||
# Alwatr Bun Container | ||
|
||
An all-in-one JavaScript runtime & toolkit designed for speed, complete with a bundler, test runner, and Node.js-compatible package manager, packaged by Alwatr. | ||
|
||
## Usage | ||
|
||
Check versions from [Alwatr/packages](https://github.com/Alwatr/containers/pkgs/container/bun) | ||
|
||
### Install from the command line | ||
|
||
```bash | ||
docker pull ghcr.io/alwatr/bun:1 | ||
``` | ||
|
||
### Use as base image in Dockerfile | ||
|
||
```dockerfile | ||
FROM ghcr.io/alwatr/bun:1 | ||
``` |