diff --git a/.ci/docker/centos/Dockerfile b/.ci/docker/centos/Dockerfile new file mode 100644 index 00000000..6f381e56 --- /dev/null +++ b/.ci/docker/centos/Dockerfile @@ -0,0 +1,19 @@ +FROM centos:8 + +LABEL maintainer="mail@sobolevn.me" +LABEL vendor="git-secret team" + +RUN dnf -y update \ + && dnf install -y \ + # Direct dependencies: + bash \ + gawk \ + git \ + gnupg \ + # Assumed to be present: + diffutils \ + findutils \ + procps \ + make \ + && dnf clean all \ + && rm -rf /var/cache/yum diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f80282f5..bb449e27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - ubuntu - alpine - fedora - # - centos + - centos steps: - uses: actions/checkout@v2