{"id":17693606,"url":"https://github.com/andy5995/docker-slackware-build-essential","last_synced_at":"2025-05-12T20:53:45.557Z","repository":{"id":129382517,"uuid":"585281096","full_name":"andy5995/docker-slackware-build-essential","owner":"andy5995","description":"Dockerfile for building a Slackware image with essential build tools","archived":false,"fork":false,"pushed_at":"2025-02-27T16:07:27.000Z","size":114,"stargazers_count":12,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"trunk","last_synced_at":"2025-05-09T15:56:57.455Z","etag":null,"topics":["ci","ci-container","continuous","continuous-integration","docker","docker-image","dockerfile","github-actions","public-domain","slackware","test-automation","unlicense","workflows"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andy5995.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,"zenodo":null}},"created_at":"2023-01-04T19:21:06.000Z","updated_at":"2025-03-22T06:38:29.000Z","dependencies_parsed_at":"2024-01-15T22:48:10.958Z","dependency_job_id":"44fe3c81-6e19-400e-8dcb-69623597ebf4","html_url":"https://github.com/andy5995/docker-slackware-build-essential","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fdocker-slackware-build-essential","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fdocker-slackware-build-essential/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fdocker-slackware-build-essential/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy5995%2Fdocker-slackware-build-essential/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andy5995","download_url":"https://codeload.github.com/andy5995/docker-slackware-build-essential/tar.gz/refs/heads/trunk","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253822103,"owners_count":21969802,"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","ci-container","continuous","continuous-integration","docker","docker-image","dockerfile","github-actions","public-domain","slackware","test-automation","unlicense","workflows"],"created_at":"2024-10-24T13:45:38.536Z","updated_at":"2025-05-12T20:53:45.477Z","avatar_url":"https://github.com/andy5995.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Docker Image CI](https://github.com/andy5995/docker-slackware-build-essential/actions/workflows/docker.yml/badge.svg)](https://github.com/andy5995/docker-slackware-build-essential/actions/workflows/docker.yml)\n# Slackware Build Essential Docker Image\n\nThis image aims to provide the essential tools for building software in a\nSlackware environment. It can be used as a [service\ncontainer](https://docs.github.com/en/actions/using-containerized-services/about-service-containers#creating-service-containers)\nin a GitHub action.\n\nThe image can be pulled from [Docker\nHub](https://hub.docker.com/repository/docker/andy5995/slackware-build-essential).\n\n    docker pull andy5995/slackware-build-essential:15.0\n\n## Included package managers\n\n* [slackpkg](https://docs.slackware.com/slackware:slackpkg)\n* [sbopkg](https://sbopkg.org/)\n* [slapt-get](https://github.com/jaos/slapt-get)\n\nIf you're not familiar with any of these, see the pages linked. You may also\npost a question in the\n[Discussions](https://github.com/andy5995/docker-slackware-build-essential/discussions).\n\n## Example for use in a GitHub workflow\n\n```yml\n  slackware:\n    runs-on: ubuntu-latest\n    container: andy5995/slackware-build-essential:15.0\n    steps:\n    - uses: actions/checkout@v3\n    - name: Change default mirror\n      run: echo \"https://mirrors.ocf.berkeley.edu/slackware/slackware64-15.0/\" \u003e /etc/slackpkg/mirrors\n    - name: Install dependencies\n      run: |\n        echo n | slackpkg update\n        echo y | slackpkg install libassuan\n        #\n        # Note that in some cases, sbopkg may return 0 on error\n        # https://github.com/sbopkg/sbopkg/issues/85\n        sbopkg -r\n        sbopkg -B -i Pykka -e stop\n        slapt-get -u\n        slapt-get --install libX11\n    - name: Build and test with meson\n      run: |\n        meson setup _build\n        cd _build\n        meson compile\n        meson test\n```\n\nIf you would like to randomly rotate the\n[mirror](https://ftp.ussg.indiana.edu/linux/slackware/slackware64/source/ap/slackpkg/files/mirrors-x86_64.sample)\nused each time:\n\n```yml\n    - name: Change default mirror\n      run: |\n        mirror=( \\\n          http://ftp.sunet.se/mirror/slackware.com/slackware64-15.0/ \\\n          http://ftp.tu-chemnitz.de/pub/linux/slackware/slackware64-15.0/ \\\n          http://ftp.mirrorservice.org/sites/ftp.slackware.com/pub/slackware/slackware64-15.0/    \\\n          http://slackware.mirrors.tds.net/pub/slackware/slackware64-15.0/ \\\n        )\n        echo ${mirror[$(shuf -i 0-3 -n 1)]} \u003e /etc/slackpkg/mirrors\n```\n\n## Customize\n\nThis is a [template\nrepository](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template),\nwhich means you can create a repository from this repo, then customize the\nDockerfile to include all the dependencies your projects needs. You can push\nyour new image directly to [Docker Hub after creating a few access\ntokens](https://docs.docker.com/build/ci/github-actions/).\n\nWhen you're ready to use the image in your new workflow, simply change the\n'container' line (shown in the example workflow above).\n\n## Projects using this in their CI:\n\n* [rmw](https://github.com/theimpossibleastronaut/rmw)\n* [curl](https://github.com/curl/curl)\n\n## Building the Image Locally\n\n    docker build -t \u003cname:tag\u003e .\n\n## LICENSE\n\nThe license included in this repository only applies to the files within this\nrepository; it does not apply to the files retrieved when the image is\ncreated, nor to the files contained within the docker image itself.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy5995%2Fdocker-slackware-build-essential","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandy5995%2Fdocker-slackware-build-essential","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy5995%2Fdocker-slackware-build-essential/lists"}