From 5cebdbfe48208d16c9adf3782811af63c1926417 Mon Sep 17 00:00:00 2001 From: Ben Borgers Date: Mon, 3 Jun 2024 23:08:32 -0400 Subject: [PATCH] Install curl --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 26782b9..6edd8df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM oven/bun COPY . . +RUN apt-get update && apt-get install -y curl RUN bun install ENV PORT=3000 EXPOSE 3000