diff --git a/.docker/Dockerfile b/.docker/Dockerfile index a10f9c9..bf5dc43 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -12,7 +12,7 @@ COPY SSAPy/ /opt/SSAPy/ # Install C/C++ compilers RUN echo "sslverify=False" >> /etc/dnf/dnf.conf && \ dnf -y update && \ - dnf groupinstall -y "Development Tools" && \ + dnf groupinstall --exclude=selinux-policy --exclude=selinux-policy-targeted -y "Development Tools" && \ dnf -y clean all && \ sed -i '$ d' /etc/dnf/dnf.conf && \ gcc --version diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e93f12..48bd5d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,8 +130,7 @@ jobs: id: docker_meta with: images: | - ghcr.io/${{ github.repository_owner }}/centos-s8 - ${{ github.repository_owner }}/centos-s8 + ghcr.io/${{ github.repository_owner }}/ssapy-centos-s9 tags: | type=schedule,pattern=nightly type=schedule,pattern=develop @@ -140,13 +139,14 @@ jobs: type=semver,pattern={{major}} type=ref,event=branch type=ref,event=pr + type=ref,event=tag - name: Log in to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Build & Deploy centos-s8 + - name: Build & Deploy Images uses: docker/build-push-action@v5 with: context: . diff --git a/docs/source/conf.py b/docs/source/conf.py index e8afe6d..7b177af 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,6 +71,7 @@ def linkcode_resolve(domain, info): "python": ("https://docs.python.org/3", None), "numpy": ("http://docs.scipy.org/doc/numpy", None), } +tls_verify = False master_doc = "index" # -- Options for HTML output -------------------------------------------------