{"id":31968024,"url":"https://github.com/nicoverbruggen/php85-alpine","last_synced_at":"2026-02-10T14:09:14.201Z","repository":{"id":314087683,"uuid":"1054096554","full_name":"nicoverbruggen/php85-alpine","owner":"nicoverbruggen","description":"Docker image for PHP 8.5, using the Alpine image as a base. Used for my own test runners. ","archived":false,"fork":false,"pushed_at":"2025-12-23T12:02:46.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-25T01:47:43.088Z","etag":null,"topics":["alpine","cd","ci","docker","php","podman"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nicoverbruggen.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-10T11:08:06.000Z","updated_at":"2025-12-23T12:02:35.000Z","dependencies_parsed_at":"2025-09-10T15:27:49.294Z","dependency_job_id":"79457978-ae76-4aec-b007-41c569002af4","html_url":"https://github.com/nicoverbruggen/php85-alpine","commit_stats":null,"previous_names":["nicoverbruggen/php85-alpine"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/nicoverbruggen/php85-alpine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicoverbruggen%2Fphp85-alpine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicoverbruggen%2Fphp85-alpine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicoverbruggen%2Fphp85-alpine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicoverbruggen%2Fphp85-alpine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nicoverbruggen","download_url":"https://codeload.github.com/nicoverbruggen/php85-alpine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicoverbruggen%2Fphp85-alpine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29303124,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T14:01:40.753Z","status":"ssl_error","status_checked_at":"2026-02-10T14:01:37.954Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alpine","cd","ci","docker","php","podman"],"created_at":"2025-10-14T18:46:56.801Z","updated_at":"2026-02-10T14:09:14.104Z","avatar_url":"https://github.com/nicoverbruggen.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# php85-alpine\n\n\u003e [!IMPORTANT]  \n\u003e **PHP 8.5 has not been released yet, so some functionality may be missing due to pending compatibility issues. Currently `imagick` and `xdebug` are not included. For testing purposes only.** \n \n## What is this?\n\nThis is a custom build based on PHP 8.5's Alpine docker image, with changes to make Laravel back-end testing easily possible.\n\nThis image includes:\n\n- PHP 8.5 with `bcmath`, `exif`, `gd`, `intl`, `mysqli`, `pcntl`, `pdo_mysql`, `pdo_pgsql`, `pgsql`, `sodium`, `zip`, `xdebug`, and `imagick` installed.\n- Packages: `curl`, `git`, `sqlite`, `nano`, `ncdu`, `nodejs`, `npm`, `openssh-client`.\n- `opcache` now ships with PHP by default, it is no longer a separate extension.\n- The latest version of Composer (at the time of the build) also comes pre-installed in `/usr/local/bin/composer`.\n\n\nFor the latest list of inclusions, see the [Dockerfile](./Dockerfile).\n\n## Quick start\n\n### Docker\n\nIn order to build and then test the container:\n\n    docker buildx build . --platform linux/amd64 -t nicoverbruggen/php84-alpine \\\n    \u0026\u0026 docker run -it nicoverbruggen/php85-alpine sh\n\nYou may omit the `--platform` flag if you wish to build a container for your own architecture, but there may be issues with dependencies.\n\n### Podman\n\n    podman build . -t nicoverbruggen/php85-alpine \\\n    \u0026\u0026 podman run -it nicoverbruggen/php85-alpine sh\n\n## Automatic builds\n\nThe automatically build the container and have it pushed, you must:\n\n* Tag the commit you wish to build\n* Create a new release with said tag\n\nThe Docker action will automatically build the release and push it under that tag to Docker Hub.\n\n## Example usage\n\n### GitHub Actions / Gitea Actions\n\n`/.github/workflows/run-tests.yml`\n```\nname: Test Suite\non:\n  push:\n    branches:\n      - main\njobs:\n  test-suite:\n    runs-on: ubuntu-latest\n    container:\n      image: nicoverbruggen/php85-alpine:latest\n    steps:\n      - name: Checkout Repository\n        uses: actions/checkout@v4\n\n      - name: Prepare Environment\n        run: |\n          cp .env.ci .env\n          cp .env.ci .env.testing\n\n      - name: Install Dependencies\n        run: |\n          composer install\n          npm install --silent\n          npm run production\n\n      - name: Run Tests\n        run: |\n          touch ./database/tests.sqlite\n          vendor/bin/pest --coverage --colors=never\n```\n\n### GitLab CI\n\n`.gitlab-ci.yml`\n```\ntests:\n  only:\n    - main\n  image: nicoverbruggen/php85-alpine:latest\n  script:\n    - cp .env.ci .env\n    - cp .env.ci .env.testing\n    - composer install\n    - npm install --silent\n    - npm run production\n    - touch ./database/tests.sqlite\n    - vendor/bin/pest --coverage --colors=never\n```\n\n## Where can I find it?\n\nYou can find the image on Docker Hub here: https://hub.docker.com/r/nicoverbruggen/php85-alpine.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicoverbruggen%2Fphp85-alpine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnicoverbruggen%2Fphp85-alpine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicoverbruggen%2Fphp85-alpine/lists"}