Add Bundler to dockerfile, fix build name
/ build_website (push) Successful in 8s Details

This commit is contained in:
Michał Rudowicz 2025-02-22 23:32:46 +01:00
parent 914b3b5317
commit 07a78f2f5f
2 changed files with 9 additions and 5 deletions

View File

@ -3,7 +3,7 @@ on:
branches:
- main
jobs:
test:
build_website:
runs-on: docker
container:
image: git.hswro.org/fleg/hswro_org:latest

View File

@ -1,7 +1,11 @@
FROM fedora:41
FROM ubuntu:22.04
RUN dnf -y upgrade \
&& dnf install -y ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools nodejs git \
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/* \
&& gem install --no-document jekyll -v 4.4.1 \
&& gem install --no-document jekyll-environment-variables \
&& gem install --no-document webrick -v 1.7
&& gem install --no-document webrick -v 1.7 \
&& gem install bundler