From c038040e1baaabc6d90d08af38139d939da0b62a Mon Sep 17 00:00:00 2001 From: takatost Date: Fri, 26 Jan 2024 03:09:24 +0800 Subject: [PATCH] Add gmpy2 dependencies packages (#2216) --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 5114eeb242..678416f113 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -7,7 +7,7 @@ LABEL maintainer="takatost@gmail.com" FROM base as packages RUN apt-get update \ - && apt-get install -y --no-install-recommends gcc g++ libc-dev libffi-dev + && apt-get install -y --no-install-recommends gcc g++ libc-dev libffi-dev libgmp-dev libmpfr-dev libmpc-dev COPY requirements.txt /requirements.txt @@ -32,7 +32,7 @@ ENV TZ UTC WORKDIR /app/api RUN apt-get update \ - && apt-get install -y --no-install-recommends curl wget vim nodejs ffmpeg \ + && apt-get install -y --no-install-recommends curl wget vim nodejs ffmpeg libgmp-dev libmpfr-dev libmpc-dev \ && apt-get autoremove \ && rm -rf /var/lib/apt/lists/*