From 57b8273002e32cb3b3ce6ab001d944bd92cecd55 Mon Sep 17 00:00:00 2001 From: Debanjum Date: Sat, 23 Nov 2024 21:05:30 -0800 Subject: [PATCH] Fix apt install for musl-dev in prod.Dockerfile --- prod.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prod.Dockerfile b/prod.Dockerfile index 4a8f5fac..8c467b93 100644 --- a/prod.Dockerfile +++ b/prod.Dockerfile @@ -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 - && \