diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1e7c9ab..0077a7b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -110,6 +110,7 @@ jobs: strategy: matrix: RELEASE: + - chimaera - beowulf name: Build Devuan ${{ matrix.RELEASE }} diff --git a/centos/helpers/build.sh b/centos/helpers/build.sh index b98ce0e..4ce4c26 100644 --- a/centos/helpers/build.sh +++ b/centos/helpers/build.sh @@ -3,6 +3,7 @@ set -ex echo Installing Centos $CENTOS_RELEASE dnf update -y dnf install -y \ + cronie \ systemd-sysv \ vim \ binutils \ diff --git a/debian/helpers/build.sh b/debian/helpers/build.sh index 4529e0e..5b486f2 100644 --- a/debian/helpers/build.sh +++ b/debian/helpers/build.sh @@ -9,6 +9,7 @@ apt-get install -yq \ systemd-sysv \ vim \ binutils \ + cron \ dialog \ openssh-server \ sudo \ diff --git a/devuan/Dockerfile b/devuan/Dockerfile index a656c01..f30212c 100644 --- a/devuan/Dockerfile +++ b/devuan/Dockerfile @@ -1,5 +1,5 @@ ARG DEVUAN_RELEASE -FROM lpenz/devuan-${DEVUAN_RELEASE}-amd64:latest +FROM dyne/devuan:${DEVUAN_RELEASE} ARG DEVUAN_RELEASE ENV DEVUAN_RELEASE ${DEVUAN_RELEASE} COPY helpers /helpers diff --git a/devuan/helpers/build.sh b/devuan/helpers/build.sh index b4a5ba9..def2f11 100644 --- a/devuan/helpers/build.sh +++ b/devuan/helpers/build.sh @@ -8,6 +8,7 @@ apt-get install -yq apt-utils apt-get install -yq \ vim \ binutils \ + cron \ openssh-server \ sudo \ iproute2 \ diff --git a/ubuntu/helpers/build.sh b/ubuntu/helpers/build.sh index a54c923..823c7fd 100644 --- a/ubuntu/helpers/build.sh +++ b/ubuntu/helpers/build.sh @@ -9,6 +9,7 @@ apt-get install -yq \ systemd-sysv \ vim \ binutils \ + cron \ dialog \ openssh-server \ sudo \