File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM ubuntu:24.04 AS build
2- RUN apt-get update && apt-get install -y cmake gcc g++ pkg-config libssl-dev zlib1g-dev git && rm -rf /var/lib/apt/lists/*
2+ RUN apt-get update && apt-get install -y cmake gcc g++ pkg-config libssl-dev zlib1g-dev git ruby bison && rm -rf /var/lib/apt/lists/*
33RUN git clone --recurse-submodules --depth 1 https://github.com/h2o/h2o.git /src/h2o
44WORKDIR /src/h2o/build
5- RUN cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local && make -j$(nproc) && make install
5+ RUN cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DWITH_MRUBY=ON && make -j$(nproc) && make install
66
77FROM ubuntu:24.04
88RUN apt-get update && apt-get install -y libssl3t64 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 33 default:
44 paths:
55 /:
6- file.dir: /var/www
6+ mruby.handler: |
7+ proc {|env| [200, {"content-type" => "text/plain"}, ["OK"]] }
You can’t perform that action at this time.
0 commit comments