From 748d8f1c2b950a758395adc66fc4946050a77fef Mon Sep 17 00:00:00 2001 From: joseferben Date: Tue, 27 Aug 2024 11:33:28 +0200 Subject: [PATCH] fix: install curl --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 62672db..35e1c2f 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -17,7 +17,7 @@ FROM base as build # Install packages needed to build node modules RUN apt-get update -qq && \ - apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3 sqlite3 + apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3 sqlite3 curl # Install node modules COPY --link . .