We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0508bfb commit 9d479acCopy full SHA for 9d479ac
builders/wasm32-unknown-wasip1/Dockerfile
@@ -39,11 +39,13 @@ ADD --keep-git-dir=true https://github.com/ruby/ruby.git /buildruby
39
RUN set -eux; \
40
cd /buildruby; \
41
./autogen.sh; \
42
- ./configure --prefix=/usr/local --disable-install-doc; \
+ mkdir -p /opt/ruby; \
43
+ ./configure --prefix=/opt/ruby --disable-install-doc; \
44
make -j$(nproc); \
45
make install; \
46
cd /; \
47
rm -rf /buildruby
48
+ENV PATH=/opt/ruby/bin:$PATH
49
50
ENV BUNDLE_PATH=/usr/local/gems
51
0 commit comments