diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59e7924..4e70dca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: cinc/cinc: 'cinc/cinc/**' doctl: 'doctl/**' dokken/centos-7: 'dokken/centos-7/**' + dokken/centos-stream-9: 'dokken/centos-stream-9/**' dokken/oraclelinux-7: 'dokken/oraclelinux-7/**' dokken/oraclelinux-8: 'dokken/oraclelinux-8/**' dokken/oraclelinux-9: 'dokken/oraclelinux-9/**' diff --git a/dokken/centos-stream-9/.dockerignore b/dokken/centos-stream-9/.dockerignore new file mode 100644 index 0000000..e96831e --- /dev/null +++ b/dokken/centos-stream-9/.dockerignore @@ -0,0 +1,2 @@ +Polly.toml +test/ diff --git a/dokken/centos-stream-9/Containerfile b/dokken/centos-stream-9/Containerfile new file mode 100644 index 0000000..67fd741 --- /dev/null +++ b/dokken/centos-stream-9/Containerfile @@ -0,0 +1,64 @@ +ARG CONTAINER_REGISTRY=quay.io +FROM $CONTAINER_REGISTRY/centos/centos:stream9 + +LABEL \ + org.opencontainers.image.source="https://github.com/polymathrobotics/oci" \ + org.opencontainers.image.licenses="Apache-2.0" \ + org.opencontainers.image.description="CentOS Stream 9 image for kitchen-dokken" + +# NOTE: CentOS Stream 9 is still under heavy development +# hadolint ignore=DL3041 +RUN <