Skip to content
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

New image: bun #14272

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions library/bun
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Maintainers: Jarred Sumner <[email protected]> (@Jarred-Sumner),
Ashcon Partovi <[email protected]> (@Electroid)
GitRepo: https://github.com/oven-sh/bun.git

Tags: latest, debian, 0.5.7, 0.5.7-debian, 0.5, 0.5-debian
Architectures: amd64, arm64v8
GitCommit: 37293cb26a8239d4f387218a1fdadc522787835f
Directory: dockerhub/debian

Tags: debian-slim, 0.5.7-debian-slim, 0.5-debian-slim
Architectures: amd64, arm64v8
GitCommit: 37293cb26a8239d4f387218a1fdadc522787835f
Directory: dockerhub/debian-slim
1 change: 1 addition & 0 deletions test/tests/bun-hello-world/container.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello from Bun!");
1 change: 1 addition & 0 deletions test/tests/bun-hello-world/expected-std-out.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello from Bun!
1 change: 1 addition & 0 deletions test/tests/bun-hello-world/run.sh
7 changes: 7 additions & 0 deletions test/tests/run-bun-in-container.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
set -e

testDir="$(readlink -f "$(dirname "$BASH_SOURCE")")"
runDir="$(dirname "$(readlink -f "$BASH_SOURCE")")"

source "$runDir/run-in-container.sh" "$testDir" "$1" bun ./container.js