From 5594d2021878ca43c09acb595e5a6ba019bbfabd Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 8 Dec 2024 18:23:22 +0100 Subject: [PATCH] fix(build): :building_construction: Add Node to Docker build --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 75c827d..86f142f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -FROM oven/bun:1.1.38-alpine AS base +# Paraglide doesn't properly work with Bun, so it needs Node +FROM imbios/bun-node:22-alpine AS base # Install dependencies into temp directory # This will cache them and speed up future builds