Files
infrastructure/servers/legion/k8s/gitea-runner/Dockerfile
T
Will Anderson ce45384f81 feat: add Ruby and bundler to legion-runner image
Required for Jekyll-based doc builds in CI.
2026-03-26 10:59:36 -05:00

25 lines
396 B
Docker

FROM gitea/act_runner:latest
USER root
RUN apk add --no-cache \
bash \
git \
curl \
nodejs \
npm \
python3 \
py3-pip \
python3-dev \
gcc \
musl-dev \
linux-headers \
make \
ruby \
ruby-bundler \
ruby-dev \
build-base \
zlib-dev && \
ln -sf /usr/bin/node /usr/local/bin/node && \
ln -sf /usr/bin/npm /usr/local/bin/npm