{"id":16725286,"url":"https://github.com/unfor19/alpine-ci","last_synced_at":"2026-05-17T12:32:17.856Z","repository":{"id":122056778,"uuid":"324726850","full_name":"unfor19/alpine-ci","owner":"unfor19","description":"Docker image of Linux alpine, mostly suited for simple CI tasks","archived":false,"fork":false,"pushed_at":"2022-11-03T10:29:18.000Z","size":1716,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-15T15:14:37.854Z","etag":null,"topics":["alpine","awscli","awscliv2","cicd","cli","docker","docker-image"],"latest_commit_sha":null,"homepage":"https://meirg.co.il","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/unfor19.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":"2020-12-27T09:23:46.000Z","updated_at":"2023-01-10T08:18:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"505855b9-bcc4-41c2-b4b5-d491817a894e","html_url":"https://github.com/unfor19/alpine-ci","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unfor19/alpine-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfor19%2Falpine-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfor19%2Falpine-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfor19%2Falpine-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfor19%2Falpine-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unfor19","download_url":"https://codeload.github.com/unfor19/alpine-ci/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfor19%2Falpine-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33138279,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["alpine","awscli","awscliv2","cicd","cli","docker","docker-image"],"created_at":"2024-10-12T22:48:39.386Z","updated_at":"2026-05-17T12:32:17.833Z","avatar_url":"https://github.com/unfor19.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# alpine-ci\n\n[![Push latest release to DockerHub](https://github.com/unfor19/alpine-ci/workflows/Push%20latest%20release%20to%20DockerHub/badge.svg)](https://github.com/unfor19/alpine-ci/actions?query=workflow%3A%22Push+latest+release+to+DockerHub%22)\n[![DockerHub Pulls](https://img.shields.io/docker/pulls/unfor19/alpine-ci.svg)](https://hub.docker.com/r/unfor19/alpine-ci)\n\nDocker image of Linux alpine which includes the following packages\n\n\u003c!-- replacer_start --\u003e\n\n```\nalpine            3.14\nawscli            2.2.0\nbash              5.1\ncurl              7.79\ndocker            20.10\ngit               2.32\njq                1.6\nopenssh           8.6\nzip               3.0\nawscli            2.4.13\nopenssl           1.1.1\ndocker_file_path  /opt/alpineci_version\n```\r\n\n\u003c!-- replacer_end --\u003e\n\n## Included in alpine\n\n- tar\n- unzip\n- wget\n- Listing all built-in packages \n  ```bash\n  docker run --entrypoint busybox --rm alpine:3.12 --list\n  ```\n\n## Usage\n\n- Run the latest release\n\n  ```bash\n  docker run --rm -it unfor19/alpine-ci\n  ```\n\n- Run a specific release\n  ```bash\n  RELEASE_TAG=\"master-f92a0197\"\n  docker run \"unfor19/alpine-ci:${RELEASE_TAG}\"\n  ```\n\n- Use as a base image in a Dockerfile\n\n```dockerfile\nARG ALPINECI_TAG\nFROM unfor19/alpine-ci:${ALPINECI_TAG} as base\n\n# Do your \"build\" stuff ...\nWORKDIR /code/\nRUN curl -s https://catfact.ninja/fact | jq -r .fact \u003e fact.txt\n\n# Use Docker multi-stage\nFROM ubuntu:20.04 as app\nWORKDIR /app/\nCOPY --from=base /code/* /app/\nCMD find -type f -name *.txt -exec cat {} \\;\n```\n\n- Build your image\n\n  ```bash\n  ALPINECI_TAG=\"latest\"\n  DOCKERFILE_PATH=\"Dockerfile.example\"\n  IMAGE_NAME=\"catfact\"\n  docker build --build-arg ALPINECI_TAG=\"$ALPINECI_TAG\" -f \"$DOCKERFILE_PATH\" -t \"$IMAGE_NAME\" .\n  ```\n\n- Run a container of your image\n  ```bash\n  IMAGE_NAME=\"catfact\"\n  docker run --rm \"$IMAGE_NAME\"\n  \n  # Random output:\n  # Many cats cannot properly digest cow's milk. Milk and milk products give them diarrhea.\n  ```\n\n## Tips\n\n### When to use **ubuntu** instead of alpine?\n\nChoosing alpine is awesome, but in some scenarios it just won't cut it. Here are some popular use-cases that might help you with choosing the right linux distribution.\n\n- Building a Python app - some Python packages require [glibc](https://www.gnu.org/software/libc/) and trying to compile them with alpine's [musl](https://www.musl-libc.org/) won't do it. For simple Python apps it's ok, but if it breaks after you add some package, then switching to `ubuntu` might be better for you\n- [AWS CLI v1](https://docs.aws.amazon.com/cli/latest/userguide/install-linux.html#install-linux-prereqs) - requires Python\n- [AWS CLI v2](https://github.com/aws/aws-cli/issues/4971) - requires `glibc`\n\n## Authors\n\nCreated and maintained by [Meir Gabay](https://github.com/unfor19)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfor19%2Falpine-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funfor19%2Falpine-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfor19%2Falpine-ci/lists"}