Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-09-27 | fix: Docker - Apply workaround with `RUN` to symlink `bunx` (#6100) | 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-26 | Use `ln -s` instead of `ln` due to image size | 4 | -4/+4 | ||
2023-09-26 | Better bun-release workflow | 2 | -0/+0 | ||
2023-09-26 | Fix alpine image for arm64 | 1 | -6/+6 | ||
2023-09-26 | Fix debian-slim docker workflow | 2 | -0/+0 | ||
2023-09-26 | fix: Docker - Include `bunx` symlink in distroless variant (#6090) | 1 | -6/+6 | ||
2023-09-26 | Improve Docker images (#5771) | 7 | -147/+150 | ||
* Improve Docker images * Add alpine and distroless images * Update docker workflow | |||||
2023-08-19 | Update Dockerfile-distroless (#4210) | 1 | -0/+1 | ||
2023-03-16 | Organize Dockerfiles for official status | 9 | -55/+283 | ||
2023-02-22 | Fix glibc error in alpine Docker image (#2126) | 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-07 | Fix 'MissingPackageJSON' in Dockerfile | 1 | -3/+2 | ||
Closes #2008 | |||||
2023-02-01 | Update trustdb in Docker image | 1 | -0/+1 | ||
2023-01-27 | Create unified release workflow | 1 | -0/+83 | ||
2022-09-20 | fix: add destination to ADD command in Dockerfile (#1268) | 1 | -1/+1 | ||
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com> Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com> | |||||
2022-07-25 | Use 'ADD' instead of running wget to make docker compare checksums on bun's ↵ | 1 | -2/+2 | ||
latest file (#864) | |||||
2022-07-15 | Create github workflow to publish releases on dockerhub (#716) | 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> |