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: branches:
- main - main
jobs: jobs:
test: build_website:
runs-on: docker runs-on: docker
container: container:
image: git.hswro.org/fleg/hswro_org:latest 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 \ RUN apt-get update && apt-get install -y --no-install-recommends \
&& dnf install -y ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools nodejs git \ 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 -v 4.4.1 \
&& gem install --no-document jekyll-environment-variables \ && 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