From 9adf966a0df9b7263ec436de5c5e7270ba35231a Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sun, 25 Feb 2024 20:34:05 -0800 Subject: [PATCH] bison is needed for ruby_3_2 Adding bison was the purpose of the last PR, but I ended up removing it from every image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7345e41..cca9a2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ COPY build_ruby.sh /tmp RUN set -ex \ && apt-get update \ && apt-get install ${packages} \ - autoconf patch build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev \ + autoconf patch bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev \ libgmp-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev uuid-dev \ libjemalloc-dev tzdata valgrind wget ca-certificates sudo docker.io libcapstone-dev \ && bash -c "if [[ -n '$system_ruby' ]]; then apt-get install 'ruby${system_ruby}'; fi" \