diff --git a/.gitea/workflows/fedora.yaml b/.gitea/workflows/fedora.yaml index 5cd58a5..f8519e9 100644 --- a/.gitea/workflows/fedora.yaml +++ b/.gitea/workflows/fedora.yaml @@ -37,15 +37,15 @@ jobs: build-args: TAG=${{ github.ref_name }} outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true - - name: Build and push Rust container - uses: docker/build-push-action@v5 - with: - context: ./containers/rust - file: ./containers/rust/Containerfile - push: true - tags: git.plabble.org/maurice/rust:${{ github.ref_name }} - build-args: TAG=${{ github.ref_name }} - outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true + # - name: Build and push Rust container + # uses: docker/build-push-action@v5 + # with: + # context: ./containers/rust + # file: ./containers/rust/Containerfile + # push: true + # tags: git.plabble.org/maurice/rust:${{ github.ref_name }} + # build-args: TAG=${{ github.ref_name }} + # outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true - name: Build and push PHP container uses: docker/build-push-action@v5 @@ -57,12 +57,12 @@ jobs: build-args: TAG=${{ github.ref_name }} outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true - - name: Build and push C# container - uses: docker/build-push-action@v5 - with: - context: ./containers/dotnet - file: ./containers/dotnet/Containerfile - push: true - tags: git.plabble.org/maurice/dotnet:${{ github.ref_name }} - build-args: TAG=${{ github.ref_name }} - outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true + # - name: Build and push C# container + # uses: docker/build-push-action@v5 + # with: + # context: ./containers/dotnet + # file: ./containers/dotnet/Containerfile + # push: true + # tags: git.plabble.org/maurice/dotnet:${{ github.ref_name }} + # build-args: TAG=${{ github.ref_name }} + # outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true diff --git a/containers/php/Containerfile b/containers/php/Containerfile index a7fa550..20e703b 100644 --- a/containers/php/Containerfile +++ b/containers/php/Containerfile @@ -1,4 +1,4 @@ FROM git.plabble.org/maurice/fedora:main -ARG php_version="8.1" # 8.4 is latest +ARG php_version="8.4" RUN /bin/bash -c "export TERM=xterm && $(curl -fsSL https://php.new/install/linux/${php_version})"