aboutsummaryrefslogtreecommitdiff
path: root/dockerhub (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-27fix: Docker - Apply workaround with `RUN` to symlink `bunx` (#6100)Gravatar Brennan Kinney 1-6/+8
Using `RUN --mount`, we can run the command with the build stage files overlayed for the `ln` and `which` commands. `/bin` is a symlink to `/usr/bin`, both seem required to work correctly.
2023-09-26Use `ln -s` instead of `ln` due to image sizeGravatar Ashcon Partovi 4-4/+4
2023-09-26Better bun-release workflowGravatar Ashcon Partovi 2-0/+0
2023-09-26Fix alpine image for arm64Gravatar Ashcon Partovi 1-6/+6
2023-09-26Fix debian-slim docker workflowGravatar Ashcon Partovi 2-0/+0
2023-09-26fix: Docker - Include `bunx` symlink in distroless variant (#6090)Gravatar Brennan Kinney 1-6/+6
2023-09-26Improve Docker images (#5771)Gravatar Ashcon Partovi 7-147/+150
* Improve Docker images * Add alpine and distroless images * Update docker workflow
2023-08-19Update Dockerfile-distroless (#4210)Gravatar Omar 1-0/+1
2023-03-16Organize Dockerfiles for official statusGravatar Ashcon Partovi 9-55/+283
2023-02-22Fix glibc error in alpine Docker image (#2126)Gravatar Andrea Giammarchi 1-1/+1
There's an override error with latest alpine and various versions of glibc (including 2.35): https://github.com/sgerrand/alpine-pkg-glibc/issues/185 This MR proposes a workaround (tested on fly.io - it works) so that it's possible to have bun usable with minimal linux dependencies.
2023-02-07Fix 'MissingPackageJSON' in DockerfileGravatar Ashcon Partovi 1-3/+2
Closes #2008
2023-02-01Update trustdb in Docker imageGravatar Ashcon Partovi 1-0/+1
2023-01-27Create unified release workflowGravatar Ashcon Partovi 1-0/+83
2022-09-20fix: add destination to ADD command in Dockerfile (#1268)Gravatar Hemanth Krishna 1-1/+1
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com> Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com>
2022-07-25Use 'ADD' instead of running wget to make docker compare checksums on bun's ↵Gravatar mikeswann 1-2/+2
latest file (#864)
2022-07-15Create github workflow to publish releases on dockerhub (#716)Gravatar Wulfre 1-0/+41
* Create github workflow to publish releases on dockerhub * Improve readability of final dockerhub dockerfile RUN command Co-authored-by: Wulfre <wulfre@users.noreply.github.com>