Fix apt install for musl-dev in prod.Dockerfile

This commit is contained in:
Debanjum
2024-11-23 21:05:30 -08:00
parent 8f966b11ec
commit 57b8273002

View File

@@ -13,9 +13,9 @@ RUN apt update -y && apt -y install \
libsm6 \
libxext6 \
swig \
curl && \
curl \
# Required by llama-cpp-python pre-built wheels. See #1628
musl-dev \
musl-dev && \
# Required by Next.js Web app
curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \