{"id":15929354,"url":"https://github.com/crazy-max/buildkit-git-umask","last_synced_at":"2026-02-07T04:31:00.794Z","repository":{"id":148251014,"uuid":"404652630","full_name":"crazy-max/buildkit-git-umask","owner":"crazy-max","description":null,"archived":false,"fork":false,"pushed_at":"2021-09-09T09:17:53.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-22T03:48:19.194Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/crazy-max.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},"funding":{"github":"crazy-max","custom":"https://www.paypal.me/crazyws"}},"created_at":"2021-09-09T08:56:50.000Z","updated_at":"2021-09-09T09:17:55.000Z","dependencies_parsed_at":"2023-05-19T13:15:25.018Z","dependency_job_id":null,"html_url":"https://github.com/crazy-max/buildkit-git-umask","commit_stats":{"total_commits":4,"total_committers":1,"mean_commits":4.0,"dds":0.0,"last_synced_commit":"a235b6fc75dc51acd953d955c9e85b2a43acc431"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/crazy-max/buildkit-git-umask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fbuildkit-git-umask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fbuildkit-git-umask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fbuildkit-git-umask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fbuildkit-git-umask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazy-max","download_url":"https://codeload.github.com/crazy-max/buildkit-git-umask/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fbuildkit-git-umask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29186736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T03:35:06.566Z","status":"ssl_error","status_checked_at":"2026-02-07T03:34:57.604Z","response_time":63,"last_error":"SSL_read: 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":[],"created_at":"2024-10-07T00:03:33.265Z","updated_at":"2026-02-07T04:31:00.775Z","avatar_url":"https://github.com/crazy-max.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":[],"sub_categories":[],"readme":"## Repro\n\n```shell\n$ git init\n$ mkdir test\n$ touch test/test.txt\n$ touch test.sh\n$ touch README.md\n$ git add *\n$ git commit -m \"test\"\n\n$ git ls-files -s .\n100644 a7d01eda217b0758f4a106f3222ae532bc77b9bf 0       README.md\n100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0       test.sh\n100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0       test/test.txt\n\n$ git update-index --chmod=+x test.sh\n$ git add *\n$ git commit -m \"test2\"\n\n$ git ls-files -s .\n100644 b500b4da14cea1f1d8a43c7d764518eecc7bb395 0       README.md\n100755 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0       test.sh\n100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0       test/test.txt\n```\n\n```shell\n$ docker buildx build --builder default .\n...\n#9 [5/5] RUN stat -c '%a %n' *\n#9 0.155 644 README.md\n#9 0.155 755 test.sh\n#9 0.155 644 test.txt\n#9 DONE 0.2s\n$ docker buildx build --builder default https://github.com/crazy-max/buildkit-git-umask.git\n...\n#7 [5/5] RUN stat -c '%a %n' *\n#7 0.428 644 README.md\n#7 0.428 755 test.sh\n#7 0.428 644 test.txt\n#7 DONE 0.5s\n```\n\n```shell\n$ docker buildx create --name ctn --use\n$ docker buildx build --builder ctn .\n...\n#11 [5/5] RUN stat -c '%a %n' *\n#11 0.191 644 README.md\n#11 0.191 755 test.sh\n#11 0.191 644 test.txt\n#11 DONE 0.2s\n$ docker buildx build --builder ctn https://github.com/crazy-max/buildkit-git-umask.git\n#7 [5/5] RUN stat -c '%a %n' *\n#7 0.181 666 README.md\n#7 0.181 777 test.sh\n#7 0.181 666 test.txt\n#7 DONE 0.2s\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Fbuildkit-git-umask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazy-max%2Fbuildkit-git-umask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Fbuildkit-git-umask/lists"}