diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a127434..65ef106 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -69,7 +69,7 @@ jobs: strategy: fail-fast: false matrix: - container: [infra, go, php] + container: [infra, go] steps: - name: Clone repo uses: actions/checkout@v6 diff --git a/containers/php/Containerfile b/containers/php/Containerfile deleted file mode 100644 index fea846f..0000000 --- a/containers/php/Containerfile +++ /dev/null @@ -1,9 +0,0 @@ -ARG TAG -FROM job79/base:${TAG} -USER root - -RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ - dnf -y --setopt=keepcache=1 install php composer npm && \ - composer global require laravel/installer - -USER user diff --git a/containers/php/config.sh b/containers/php/config.sh deleted file mode 100644 index 624524b..0000000 --- a/containers/php/config.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -run_opts+=("-v" "$HOME/Documents/php:/home/user/Documents/php")