{"id":18077595,"url":"https://github.com/fukamachi/dockerfiles","last_synced_at":"2025-08-25T01:32:24.996Z","repository":{"id":39615351,"uuid":"232540983","full_name":"fukamachi/dockerfiles","owner":"fukamachi","description":"Dockerfiles for Common Lisp programming","archived":false,"fork":false,"pushed_at":"2025-07-28T11:54:52.000Z","size":350,"stargazers_count":47,"open_issues_count":0,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-28T13:31:26.343Z","etag":null,"topics":["clozure-cl","common-lisp","dockerfiles","roswell","sbcl"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/fukamachi.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}},"created_at":"2020-01-08T10:45:22.000Z","updated_at":"2025-07-28T11:54:55.000Z","dependencies_parsed_at":"2023-02-15T19:45:30.991Z","dependency_job_id":"f5c94715-9d73-468d-8f3e-92fbe0efc507","html_url":"https://github.com/fukamachi/dockerfiles","commit_stats":{"total_commits":315,"total_committers":2,"mean_commits":157.5,"dds":0.2507936507936508,"last_synced_commit":"516928b407566f060d4a5c2477dd0d689db97e1a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fukamachi/dockerfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fdockerfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fdockerfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fdockerfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fdockerfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fukamachi","download_url":"https://codeload.github.com/fukamachi/dockerfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fdockerfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271991106,"owners_count":24854706,"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","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["clozure-cl","common-lisp","dockerfiles","roswell","sbcl"],"created_at":"2024-10-31T11:46:02.047Z","updated_at":"2025-08-25T01:32:24.992Z","avatar_url":"https://github.com/fukamachi.png","language":"Shell","readme":"# Dockerfiles for Common Lisp programming\n\nDockerfiles for each version of Common Lisp implementations and utilities. Currently provides the following products:\n\n- [Roswell](https://github.com/roswell/roswell), a Common Lisp implementation manager  \n  [![Docker Pulls](https://img.shields.io/docker/pulls/fukamachi/roswell.svg)](https://hub.docker.com/r/fukamachi/roswell/)\n  [![Docker Stars](https://img.shields.io/docker/stars/fukamachi/roswell.svg)](https://hub.docker.com/r/fukamachi/roswell/)\n- [SBCL](http://sbcl.org), a high-performance Common Lisp compiler  \n  [![Docker Pulls](https://img.shields.io/docker/pulls/fukamachi/sbcl.svg)](https://hub.docker.com/r/fukamachi/sbcl/)\n  [![Docker Stars](https://img.shields.io/docker/stars/fukamachi/sbcl.svg)](https://hub.docker.com/r/fukamachi/sbcl/)\n- [Clozure CL](https://ccl.clozure.com/), an open source Common Lisp implementation hosted by Clozure Associates  \n  [![Docker Pulls](https://img.shields.io/docker/pulls/fukamachi/ccl.svg)](https://hub.docker.com/r/fukamachi/ccl/)\n  [![Docker Stars](https://img.shields.io/docker/stars/fukamachi/ccl.svg)](https://hub.docker.com/r/fukamachi/ccl/)\n\n## Usage\n\n### Fetching from Docker Hub\n\nBuild images are also available on Docker Hub.\n\n```shell\n$ docker run -it --rm fukamachi/sbcl\n* (lisp-implementation-type)\n\"SBCL\"\n* (lisp-implementation-version)\n\"2.0.0\"\n```\n\n### Copying only SBCL in Dockerfile\n\n```shell\nFROM debian:bookworm-slim\nCOPY --from=fukamachi/sbcl:2.4.3 /root/.roswell/impls/*/linux/sbcl-bin/2.4.3 /usr/local\n```\n\n### Building by your own\n\n```shell\n$ git clone https://github.com/fukamachi/dockerfiles\n$ cd dockerfiles\n\n$ docker buildx create --use\n\n# Build the latest SBCL image (Debian)\n$ ./build.sh sbcl\n# Build SBCL 2.0.0 image (Debian)\n$ ./build.sh sbcl 2.0.0\n# Build SBCL 2.0.0 image (Alpine)\n$ ./build.sh sbcl 2.0.0 alpine\n\n# Start a REPL\n$ docker run -it --rm fukamachi/sbcl:2.0.0-debian\n* (lisp-implementation-type)\n\"SBCL\"\n* (lisp-implementation-version)\n\"2.0.0\"\n```\n\n## Fork\n\nTo make GitHub Actions work, add the following secrets` to your forked GitHub repository.\n\n- DOCKER_HUB_PASSWORD\n  - Password for Docker Hub\n\nSee [GitHub's document](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukamachi%2Fdockerfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffukamachi%2Fdockerfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukamachi%2Fdockerfiles/lists"}