Skip to content
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 <jarred@oven.sh> (@Jarred-Sumner),
Ashcon Partovi <ashcon@oven.sh> (@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