Skip to content

Commit

Permalink
Merge pull request #226 from giffels/update-deployment-tests
Browse files Browse the repository at this point in the history
Update docker container for deployment tests
  • Loading branch information
giffels authored Feb 3, 2022
2 parents f978b19 + 3155b45 commit eb1e91c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os_container: ['centos7', 'centos8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os_container: ['centos7', 'centos8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
container: matterminers/cobald-tardis-deployment-test-env:${{ matrix.os_container }}
steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 0 additions & 17 deletions containers/cobald-tardis-deployment-test-env/Dockerfile.centos8

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM quay.io/centos/centos:stream8
LABEL maintainer="Manuel Giffels <giffels@gmail.com>"

RUN dnf -y module enable nodejs:12

RUN dnf -y update \
&& dnf -y install git \
python39 \
gcc-8.5.0-7.el8 \
python39-devel \
nodejs \
glibc-langpack-en \
&& dnf clean all

SHELL [ "/bin/bash", "--noprofile", "--norc", "-e", "-o", "pipefail", "-c" ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rockylinux/rockylinux:8
FROM rockylinux:8
LABEL maintainer="Manuel Giffels <giffels@gmail.com>"

RUN yum -y install epel-release curl && yum clean all
Expand Down

0 comments on commit eb1e91c

Please sign in to comment.