nodejs requires curl for some dependencies, make sure they are part of the build container (#42)

This commit is contained in:
Michael Schmid 2024-05-27 18:03:58 -04:00 committed by GitHub
parent 8c62817f73
commit 6e3902b732
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
python3 \
build-essential \
cmake \
curl \
ca-certificates \
&& apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /build