We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96901b commit 19aea26Copy full SHA for 19aea26
.github/workflows/release.yml
@@ -59,6 +59,7 @@ jobs:
59
ghcr:
60
runs-on: ubuntu-latest
61
strategy:
62
+ fail-fast: false
63
matrix:
64
runtime: [Node, Bun]
65
name: ${{ matrix.runtime }} Docker image
packages/gateway/bun.Dockerfile
@@ -10,6 +10,10 @@ RUN bun i graphql@^16.9.0
10
11
FROM oven/bun:1.2.2
12
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
17
RUN apt-get update && apt-get install -y \
18
# for healthchecks
19
wget curl \
0 commit comments