From 5efa97fe77d9c2bca28cc2e635683934a27f57f3 Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Fri, 3 May 2024 14:31:48 -0600 Subject: [PATCH] add comment about gem install referencing issue --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c3b681e..489a2d2 100755 --- a/Dockerfile +++ b/Dockerfile @@ -109,7 +109,10 @@ RUN cmake -j$(nproc) -D BUILD_GOBENNU=OFF ../ \ && make -j$(nproc) install \ && rm -rf /tmp/* +# Gem install failures: https://github.com/jordansissel/fpm/issues/2048 +# For now, manually install dotenv 2.8.1 RUN gem install dotenv -v 2.8.1 && gem install fpm -v 1.15.1 + RUN python3 -m pip install --no-cache-dir --upgrade aptly-ctl pip setuptools twine wheel WORKDIR /root