{"id":15928377,"url":"https://github.com/artstorm/cibuild-jigsaw","last_synced_at":"2025-04-03T13:44:37.033Z","repository":{"id":142364494,"uuid":"146615422","full_name":"artstorm/cibuild-jigsaw","owner":"artstorm","description":"Docker image for testing Jigsaw generated static sites with CircleCI.","archived":false,"fork":false,"pushed_at":"2018-08-30T03:44:40.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T02:41:29.622Z","etag":null,"topics":["ci","circleci","continuous-integration","docker","jigsaw"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/artstorm/cibuild-jigsaw/","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/artstorm.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}},"created_at":"2018-08-29T14:50:24.000Z","updated_at":"2018-08-30T03:44:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"81ecf88a-d584-4baf-a5df-4332b6a31c7b","html_url":"https://github.com/artstorm/cibuild-jigsaw","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artstorm%2Fcibuild-jigsaw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artstorm%2Fcibuild-jigsaw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artstorm%2Fcibuild-jigsaw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artstorm%2Fcibuild-jigsaw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/artstorm","download_url":"https://codeload.github.com/artstorm/cibuild-jigsaw/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247014376,"owners_count":20869367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ci","circleci","continuous-integration","docker","jigsaw"],"created_at":"2024-10-06T23:40:32.488Z","updated_at":"2025-04-03T13:44:37.014Z","avatar_url":"https://github.com/artstorm.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jigsaw Docker CI Build\n\nA Docker image for [Jigsaw](https://github.com/tightenco/jigsaw), static site generator based on Laravel. The image includes [HTMLProofer](https://github.com/gjtorikian/html-proofer) to test the build. Hosted on [Docker Hub](https://hub.docker.com/r/artstorm/cibuild-jigsaw/).\n\nThe image is based on the pre-built [CircleCI PHP image](https://circleci.com/docs/2.0/circleci-images/#php), with the additions of Ruby and HTMLProofer to make it suitable for building and testing Jigsaw generated websites.\n\n## Usage Example\n\nUse this `.circleci/config.yml` example config to get started building and testing Jigsaw websites with CircleCI.\n\n```yml\n##\n## CircleCI 2.0 configuration file\n##\nversion: 2\njobs:\n  build:\n    docker:\n      - image: artstorm/cibuild-jigsaw:latest\n\n    working_directory: ~/repo\n\n    steps:\n      - checkout\n\n      # Download and cache composer dependencies\n      - restore_cache:\n          keys:\n          - composer-v1-cache-{{ checksum \"composer.lock\" }}\n      - run: composer install -n --prefer-dist\n      - save_cache:\n          key: composer-v1-cache-{{ checksum \"composer.lock\" }}\n          paths:\n            - vendor\n\n      # Download and cache node dependencies\n      - restore_cache:\n          keys:\n            - node-v1-cache-{{ checksum \"package-lock.json\" }}\n      - run: npm install --no-save\n      - save_cache:\n          key: node-v1-cache-{{ checksum \"package-lock.json\" }}\n          paths:\n            - node_modules\n      # Build site\n      - run:\n          name: Build\n          command: npm run production\n\n      # And test it\n      - run:\n          name: Test\n          command: htmlproofer ./build_production --check-html --disable-external --check-img-http --check-opengraph\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartstorm%2Fcibuild-jigsaw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartstorm%2Fcibuild-jigsaw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartstorm%2Fcibuild-jigsaw/lists"}