Created
June 19, 2023 12:06
-
-
Save zonuexe/aeb64490edf1a524d1c533484500cae8 to your computer and use it in GitHub Desktop.
ひさびさにRubyをビルドした
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -it --rm -v $PWD/../ruby:/working -w /working orebuild bash -c 'mkdir -p build; ./autogen.sh && cd build && ../configure && make -j$(nproc) && ./ruby -v' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:12 | |
RUN apt-get update -qq | |
RUN apt-get install -y build-essential ruby | |
RUN apt-get install -y automake autoconf m4 bison libyaml-dev openssl libssl-dev | |
RUN apt-get clean && rm -rf /var/lib/apt/lists/* |
Author
zonuexe
commented
Jun 19, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment