2025-02-22 22:32:46 +00:00
|
|
|
FROM ubuntu:22.04
|
2025-02-17 20:26:37 +00:00
|
|
|
|
2025-02-22 22:32:46 +00:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
ruby-full build-essential zlib1g-dev \
|
|
|
|
build-essential \
|
|
|
|
git nodejs git \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2025-02-17 20:26:37 +00:00
|
|
|
&& gem install --no-document jekyll -v 4.4.1 \
|
|
|
|
&& gem install --no-document jekyll-environment-variables \
|
2025-02-22 22:32:46 +00:00
|
|
|
&& gem install --no-document webrick -v 1.7 \
|
|
|
|
&& gem install bundler
|