From f5a91e796c80d6fe078249d9e850e93d74c82e29 Mon Sep 17 00:00:00 2001
From: Bruno Perel <brunoperel@gmail.com>
Date: Sun, 8 Sep 2024 00:38:29 +0200
Subject: [PATCH] Install bun in dockerfile build

---
 apps/duck-estimator/duck-estimator-db | 1 +
 apps/web/Dockerfile                   | 1 +
 2 files changed, 2 insertions(+)
 create mode 160000 apps/duck-estimator/duck-estimator-db

diff --git a/apps/duck-estimator/duck-estimator-db b/apps/duck-estimator/duck-estimator-db
new file mode 160000
index 000000000..2aa53cede
--- /dev/null
+++ b/apps/duck-estimator/duck-estimator-db
@@ -0,0 +1 @@
+Subproject commit 2aa53cededd52f7d815d2bd27b2eaf676710dce3
diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile
index dab0a9aad..54c4cc405 100644
--- a/apps/web/Dockerfile
+++ b/apps/web/Dockerfile
@@ -8,6 +8,7 @@ FROM pnpm AS build
 
 WORKDIR /app
 COPY . ./
+RUN curl -fsSL https://bun.sh/install | bash
 RUN --mount=type=cache,id=pnpm-store-web,target=/app/.pnpm-store \
     pnpm -r -F ~web... -F ~api... i