Add Bundler to dockerfile, fix build name
/ build_website (push) Successful in 8s
Details
/ build_website (push) Successful in 8s
Details
This commit is contained in:
parent
914b3b5317
commit
07a78f2f5f
|
@ -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
|
||||||
|
|
12
Dockerfile
12
Dockerfile
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue