{"id":15653708,"url":"https://github.com/avivace/iosevka-docker","last_synced_at":"2025-04-30T21:47:22.053Z","repository":{"id":37824939,"uuid":"316003119","full_name":"avivace/iosevka-docker","owner":"avivace","description":"Docker containers to build custom (or upstream) versions of the Iosevka typeface and package them for Debian","archived":false,"fork":false,"pushed_at":"2023-03-14T21:52:08.000Z","size":51,"stargazers_count":28,"open_issues_count":5,"forks_count":11,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-02-25T11:39:49.034Z","etag":null,"topics":["debian","debian-package","debian-packages","debian-packaging","docker","docker-image","dockerfile","font","font-build","fonts","monospace","monospace-font"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/avivace/iosevka-build","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avivace.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-11-25T17:02:10.000Z","updated_at":"2024-10-07T06:54:48.000Z","dependencies_parsed_at":"2024-10-23T03:36:54.817Z","dependency_job_id":null,"html_url":"https://github.com/avivace/iosevka-docker","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avivace%2Fiosevka-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avivace%2Fiosevka-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avivace%2Fiosevka-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avivace%2Fiosevka-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avivace","download_url":"https://codeload.github.com/avivace/iosevka-docker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242711173,"owners_count":20173287,"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":["debian","debian-package","debian-packages","debian-packaging","docker","docker-image","dockerfile","font","font-build","fonts","monospace","monospace-font"],"created_at":"2024-10-03T12:46:42.647Z","updated_at":"2025-03-09T15:30:59.959Z","avatar_url":"https://github.com/avivace.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# iosevka-docker\n\n[![Docker Pulls](https://img.shields.io/docker/pulls/avivace/iosevka-build?style=flat-square)](https://hub.docker.com/r/avivace/iosevka-build)\n\nDocker containers to build your own (or standard) version of the [Iosevka](https://github.com/be5invis/Iosevka) typeface without worrying about dependencies and build environments.\n\n## Quickstart\n\nLinux:\n```bash\ndocker run -it -v $(pwd):/build avivace/iosevka-build\n```\n\nWindows (Command Prompt)\n```bash\ndocker run -it -v %cd%:/build avivace/iosevka-build\n```\n\nWindows (PowerShell)\n```bash\ndocker run -it -v ${PWD}:/build avivace/iosevka-build\n```\n\n_For the rest of this document, replace `$(pwd)` with either `%cd%` or `${PWD}` based on your environment_\n\nWill build the [latest](https://github.com/be5invis/Iosevka/releases/tag/v4.0.0) released version of Iosevka with the default configuration.\n\nYour built font files will be available in the `dist/` folder.\n\n### Custom build configuration\n\nTo customize your build, just launch the docker command from the directory where your `private-build-plans.toml` is placed.\n\nYou can prepare your configuration following the [Customized Build](https://github.com/be5invis/Iosevka#customized-build) documentation or use the [Iosevka Build Customizer](https://typeof.net/Iosevka/customizer).\n\n\u003e Be aware of the breaking changes introduced with 4.0.0 i.e. configurations working with `3.7.1` are not guaranteed to work with `4.0.0`.\n\n### Version\n\nTo specify a version to build, just add `-e FONT_VERSION=` to the Docker command. E.g. to build version `3.7.1`:\n\n```\ndocker run -e FONT_VERSION=3.7.1 -it -v $(pwd):/build avivace/iosevka-build\n```\nReleases can be found [here](https://github.com/be5invis/Iosevka/releases). Only font versions 3.0.0 or higher are supported.\n\n### Build arguments\n\nYou can pass any of the optional build options described in [Customized Build](https://github.com/be5invis/Iosevka#customized-build).\n\n```\ndocker run -it -v $(pwd):/build avivace/iosevka-build [optional build args]\n```\n\n E.g. to only build TTF files:\n\n```bash\ndocker run -it -v $(pwd):/build avivace/iosevka-build ttf::iosevka-custom\n```\n\n## Build the Docker image yourself\n\n1. Be sure to have Docker installed. Clone this repository.\n\n```bash\ngit clone https://github.com/avivace/fonts-iosevka.git\n``` \n\n2. If you want, replace the provided `private-build-plans.toml` file with yours.\n\n3. Build and run the Docker container\n\n```bash\n# Build the container\ndocker build -t iosevka_build . -f Dockerfile\n\n# Launch the build on Iosevka git tag 3.7.1, using the build folder on the host\ndocker run -e FONT_VERSION=3.7.1 -it -v $(pwd)/build:/build iosevka_build\n```\n\n4. Done! Your built font files are available in the `dist` folder.\n\n## Install\n\nCopy the generated folders in `~/.local/share/fonts` and run `fc-cache`.\n\n```bash\ncp -r build/dist/* ~/.local/share/fonts/\nfc-cache\n```\n\n## Debian packaging\n\nTODO\n\n## References and links\n\n- https://git.mmk2410.org/deb/fonts-iosevka\n- https://github.com/ejuarezg/containers/tree/master/iosevka_font#container-method\n- https://github.com/be5invis/Iosevka\n- [Original Dockerfile](https://gist.github.com/tasuten/0431d8af3e7b5ad5bc5347ce2d7045d7)\n- https://github.com/nodesource/distributions/blob/master/README.md\n- https://premake.github.io/download.html#v5\n- https://stackoverflow.com/questions/6482377/check-existence-of-input-argument-in-a-bash-shell-script\n- https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8\n- https://stackoverflow.com/questions/1247812/how-to-use-grep-to-get-anything-just-after-name\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favivace%2Fiosevka-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favivace%2Fiosevka-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favivace%2Fiosevka-docker/lists"}