Skip to content

Commit

Permalink
feat(bun): new container image (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd authored Mar 27, 2024
2 parents b16cf8c + 004077b commit 5971bdc
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,14 @@ updates:
- ci
- priority-low
- maintenance

- package-ecosystem: docker
directory: /bun
reviewers:
- AliMD
schedule:
interval: daily
labels:
- ci
- priority-low
- maintenance
3 changes: 3 additions & 0 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ jobs:
- name: golang
path: golang

- name: bun
path: bun

permissions:
contents: read
packages: write
Expand Down
1 change: 1 addition & 0 deletions bun/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
19 changes: 19 additions & 0 deletions bun/Dockerfile
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"
19 changes: 19 additions & 0 deletions bun/README.md
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
```

0 comments on commit 5971bdc

Please sign in to comment.