Skip to content

Commit 19aea26

Browse files
authored
Fix Bun Docker build (#705)
1 parent a96901b commit 19aea26

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
ghcr:
6060
runs-on: ubuntu-latest
6161
strategy:
62+
fail-fast: false
6263
matrix:
6364
runtime: [Node, Bun]
6465
name: ${{ matrix.runtime }} Docker image

packages/gateway/bun.Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ RUN bun i graphql@^16.9.0
1010

1111
FROM oven/bun:1.2.2
1212

13+
RUN rm /var/lib/dpkg/info/libc-bin.*
14+
RUN apt-get clean
15+
RUN apt-get update
16+
RUN apt-get install libc-bin
1317
RUN apt-get update && apt-get install -y \
1418
# for healthchecks
1519
wget curl \

0 commit comments

Comments
 (0)