├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── 3.17 └── Dockerfile ├── 3.18 └── Dockerfile ├── 3.19 └── Dockerfile ├── 3.20 └── Dockerfile ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── docker-bake.hcl /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | assignees: 8 | - "atkrad" 9 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: [ "main" ] 7 | pull_request: 8 | branches: [ "*" ] 9 | 10 | jobs: 11 | docker: 12 | runs-on: ubuntu-latest 13 | strategy: 14 | matrix: 15 | alpine: [ "3.17.7", "3.18.6", "3.19.1", "3.20.0" ] 16 | variant: [ "", "openrc" ] 17 | latest: [ false ] 18 | include: 19 | - alpine: "3.20.0" 20 | variant: "" 21 | latest: true 22 | - alpine: "3.20.0" 23 | variant: "openrc" 24 | latest: true 25 | steps: 26 | - name: Checkout 27 | uses: actions/checkout@v4 28 | 29 | - uses: actions/github-script@v7 30 | id: alpine-minor-version 31 | with: 32 | # The script returns 1.15 from 1.15.10 33 | script: return "${{ matrix.alpine }}".substr(0, "${{ matrix.alpine }}".lastIndexOf(".")) 34 | result-encoding: string 35 | 36 | - name: Docker metadata 37 | id: meta 38 | uses: docker/metadata-action@v5 39 | with: 40 | labels: | 41 | maintainer=The Dockage Authors 42 | images: | 43 | dockage/alpine 44 | flavor: | 45 | latest=false 46 | suffix=${{ format(matrix.variant != '' && '-{0}' || '', matrix.variant) }} 47 | tags: | 48 | ### versioning strategy 49 | # dockage/alpine:3.16.2 50 | # dockage/alpine:3.16 51 | # dockage/alpine:3 52 | # dockage/alpine:3.16.2-openrc 53 | # dockage/alpine:3.16-openrc 54 | # dockage/alpine:3-openrc 55 | # dockage/alpine:latest 56 | type=semver,pattern={{version}},value=${{ matrix.alpine }} 57 | type=semver,pattern={{major}}.{{minor}},value=${{ matrix.alpine }} 58 | type=semver,pattern={{major}},value=${{ matrix.alpine }},enable=${{ matrix.latest }} 59 | type=raw,value=latest,suffix=,enable=${{ matrix.latest && matrix.variant == '' }} 60 | 61 | - name: Login to DockerHub 62 | uses: docker/login-action@v3 63 | with: 64 | username: ${{ secrets.DOCKERHUB_USERNAME }} 65 | password: ${{ secrets.DOCKERHUB_TOKEN }} 66 | 67 | - name: Set up Docker Buildx 68 | uses: docker/setup-buildx-action@v3 69 | 70 | - name: Build images 71 | uses: docker/bake-action@v4 72 | with: 73 | push: ${{ github.ref_name == github.event.repository.default_branch }} 74 | targets: ${{ matrix.variant }} 75 | sbom: true 76 | files: | 77 | ./docker-bake.hcl 78 | ${{ steps.meta.outputs.bake-file }} 79 | env: 80 | CONTEXT: ${{steps.alpine-minor-version.outputs.result}} 81 | 82 | - name: Docker Hub Description 83 | uses: peter-evans/dockerhub-description@v4 84 | if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }} 85 | with: 86 | username: ${{ secrets.DOCKERHUB_USERNAME }} 87 | password: ${{ secrets.DOCKERHUB_TOKEN }} 88 | short-description: ${{ github.event.repository.description }} 89 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /3.17/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.17.7 AS base 2 | 3 | RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories \ 4 | && echo '@edgecommunity http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \ 5 | && echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \ 6 | && apk add --no-cache --update --upgrade su-exec ca-certificates 7 | 8 | FROM base AS openrc 9 | 10 | RUN apk add --no-cache openrc \ 11 | && apk add --no-cache --virtual .build-dependencies uuidgen \ 12 | && uuidgen -r > /etc/machine-id \ 13 | # Disable getty's 14 | && sed -i 's/^\(tty\d\:\:\)/#\1/g' /etc/inittab \ 15 | && sed -i \ 16 | # Change subsystem type to "docker" 17 | -e 's/#rc_sys=".*"/rc_sys="docker"/g' \ 18 | # Allow all variables through 19 | -e 's/#rc_env_allow=".*"/rc_env_allow="\*"/g' \ 20 | # Start crashed services 21 | -e 's/#rc_crashed_stop=.*/rc_crashed_stop=NO/g' \ 22 | -e 's/#rc_crashed_start=.*/rc_crashed_start=YES/g' \ 23 | # Define extra dependencies for services 24 | -e 's/#rc_provide=".*"/rc_provide="loopback net"/g' \ 25 | /etc/rc.conf \ 26 | # Remove unnecessary services 27 | && rm -f /etc/init.d/hwdrivers \ 28 | /etc/init.d/hwclock \ 29 | /etc/init.d/hwdrivers \ 30 | /etc/init.d/modules \ 31 | /etc/init.d/modules-load \ 32 | /etc/init.d/modloop \ 33 | /etc/init.d/machine-id \ 34 | # Can't do cgroups 35 | && sed -i 's/\tcgroup_add_service/\t#cgroup_add_service/g' /lib/rc/sh/openrc-run.sh \ 36 | && sed -i 's/VSERVER/DOCKER/Ig' /lib/rc/sh/init.sh \ 37 | && apk del .build-dependencies 38 | 39 | CMD ["/sbin/init"] 40 | -------------------------------------------------------------------------------- /3.18/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.18.6 AS base 2 | 3 | RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories \ 4 | && echo '@edgecommunity http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \ 5 | && echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \ 6 | && apk add --no-cache --update --upgrade su-exec ca-certificates 7 | 8 | FROM base AS openrc 9 | 10 | RUN apk add --no-cache openrc \ 11 | && apk add --no-cache --virtual .build-dependencies uuidgen \ 12 | && uuidgen -r > /etc/machine-id \ 13 | # Disable getty's 14 | && sed -i 's/^\(tty\d\:\:\)/#\1/g' /etc/inittab \ 15 | && sed -i \ 16 | # Change subsystem type to "docker" 17 | -e 's/#rc_sys=".*"/rc_sys="docker"/g' \ 18 | # Allow all variables through 19 | -e 's/#rc_env_allow=".*"/rc_env_allow="\*"/g' \ 20 | # Start crashed services 21 | -e 's/#rc_crashed_stop=.*/rc_crashed_stop=NO/g' \ 22 | -e 's/#rc_crashed_start=.*/rc_crashed_start=YES/g' \ 23 | # Define extra dependencies for services 24 | -e 's/#rc_provide=".*"/rc_provide="loopback net"/g' \ 25 | /etc/rc.conf \ 26 | # Remove unnecessary services 27 | && rm -f /etc/init.d/hwdrivers \ 28 | /etc/init.d/hwclock \ 29 | /etc/init.d/hwdrivers \ 30 | /etc/init.d/modules \ 31 | /etc/init.d/modules-load \ 32 | /etc/init.d/modloop \ 33 | /etc/init.d/machine-id \ 34 | # Can't do cgroups 35 | && sed -i 's/\tcgroup_add_service/\t#cgroup_add_service/g' /lib/rc/sh/openrc-run.sh \ 36 | && sed -i 's/VSERVER/DOCKER/Ig' /lib/rc/sh/init.sh \ 37 | && apk del .build-dependencies 38 | 39 | CMD ["/sbin/init"] 40 | -------------------------------------------------------------------------------- /3.19/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.19.1 AS base 2 | 3 | RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories \ 4 | && echo '@edgecommunity http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \ 5 | && echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \ 6 | && apk add --no-cache --update --upgrade su-exec ca-certificates 7 | 8 | FROM base AS openrc 9 | 10 | RUN apk add --no-cache openrc \ 11 | && apk add --no-cache --virtual .build-dependencies uuidgen \ 12 | && uuidgen -r > /etc/machine-id \ 13 | # Disable getty's 14 | && sed -i 's/^\(tty\d\:\:\)/#\1/g' /etc/inittab \ 15 | && sed -i \ 16 | # Change subsystem type to "docker" 17 | -e 's/#rc_sys=".*"/rc_sys="docker"/g' \ 18 | # Allow all variables through 19 | -e 's/#rc_env_allow=".*"/rc_env_allow="\*"/g' \ 20 | # Start crashed services 21 | -e 's/#rc_crashed_stop=.*/rc_crashed_stop=NO/g' \ 22 | -e 's/#rc_crashed_start=.*/rc_crashed_start=YES/g' \ 23 | # Define extra dependencies for services 24 | -e 's/#rc_provide=".*"/rc_provide="loopback net"/g' \ 25 | /etc/rc.conf \ 26 | # Remove unnecessary services 27 | && rm -f /etc/init.d/hwdrivers \ 28 | /etc/init.d/hwclock \ 29 | /etc/init.d/hwdrivers \ 30 | /etc/init.d/modules \ 31 | /etc/init.d/modules-load \ 32 | /etc/init.d/modloop \ 33 | /etc/init.d/machine-id \ 34 | # Can't do cgroups 35 | && sed -i 's/\tcgroup_add_service/\t#cgroup_add_service/g' /lib/rc/sh/openrc-run.sh \ 36 | && sed -i 's/VSERVER/DOCKER/Ig' /lib/rc/sh/init.sh \ 37 | && apk del .build-dependencies 38 | 39 | CMD ["/sbin/init"] 40 | -------------------------------------------------------------------------------- /3.20/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.20.0 AS base 2 | 3 | RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories \ 4 | && echo '@edgecommunity http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \ 5 | && echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \ 6 | && apk add --no-cache --update --upgrade su-exec ca-certificates 7 | 8 | FROM base AS openrc 9 | 10 | RUN apk add --no-cache openrc \ 11 | && apk add --no-cache --virtual .build-dependencies uuidgen \ 12 | && uuidgen -r > /etc/machine-id \ 13 | # Disable getty's 14 | && sed -i 's/^\(tty\d\:\:\)/#\1/g' /etc/inittab \ 15 | && sed -i \ 16 | # Change subsystem type to "docker" 17 | -e 's/#rc_sys=".*"/rc_sys="docker"/g' \ 18 | # Allow all variables through 19 | -e 's/#rc_env_allow=".*"/rc_env_allow="\*"/g' \ 20 | # Start crashed services 21 | -e 's/#rc_crashed_stop=.*/rc_crashed_stop=NO/g' \ 22 | -e 's/#rc_crashed_start=.*/rc_crashed_start=YES/g' \ 23 | # Define extra dependencies for services 24 | -e 's/#rc_provide=".*"/rc_provide="loopback net"/g' \ 25 | /etc/rc.conf \ 26 | # Remove unnecessary services 27 | && rm -f /etc/init.d/hwdrivers \ 28 | /etc/init.d/hwclock \ 29 | /etc/init.d/hwdrivers \ 30 | /etc/init.d/modules \ 31 | /etc/init.d/modules-load \ 32 | /etc/init.d/modloop \ 33 | /etc/init.d/machine-id \ 34 | # Can't do cgroups 35 | && sed -i 's/\tcgroup_add_service/\t#cgroup_add_service/g' /lib/rc/sh/openrc-run.sh \ 36 | && sed -i 's/VSERVER/DOCKER/Ig' /lib/rc/sh/init.sh \ 37 | && apk del .build-dependencies 38 | 39 | CMD ["/sbin/init"] 40 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | conduct@dockage.dev. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guidelines 2 | 3 | Contributions are welcome via GitHub Pull Requests. This document outlines the process to help get your contribution accepted. 4 | 5 | Any type of contribution is welcome: new features, bug fixes, documentation improvements, etc. 6 | 7 | ## How to Contribute 8 | 9 | 1. Fork this repository, develop, and test your changes. 10 | 2. Submit a pull request. 11 | 12 | ### Requirements 13 | 14 | When submitting a PR make sure that: 15 | - It must pass CI jobs for linting and test the changes (if any). 16 | - It must follow [container best practices](https://engineering.bitnami.com/articles/best-practices-writing-a-dockerfile.html). 17 | - The title of the PR is clear enough. 18 | - If necessary, add information to the repository's `README.md`. 19 | 20 | #### Sign Your Work 21 | 22 | The sign-off is a simple line at the end of the explanation for a commit. All commits needs to be signed. Your signature certifies that you wrote the patch or otherwise have the right to contribute the material. The rules are pretty simple, you only need to certify the guidelines from [developercertificate.org](https://developercertificate.org/). 23 | 24 | Then you just add a line to every git commit message: 25 | 26 | Signed-off-by: Mohammad Abdolirad 27 | 28 | Use your real name (sorry, no pseudonyms or anonymous contributions.) 29 | 30 | If you set your `user.name` and `user.email` git configs, you can sign your commit automatically with `git commit -s`. 31 | 32 | Note: If your git config information is set properly then viewing the `git log` information for your commit will look something like this: 33 | 34 | ``` 35 | Author: Mohammad Abdolirad 36 | Date: Sat Sep 3 08:10:15 2022 +0200 37 | 38 | Update README 39 | 40 | Signed-off-by: Mohammad Abdolirad 41 | ``` 42 | 43 | Notice the `Author` and `Signed-off-by` lines match. If they don't your PR will be rejected by the automated DCO check. 44 | 45 | ### PR Approval and Release Process 46 | 47 | 1. Changes are manually reviewed by Dockage team members usually within a business day or weekend. 48 | 2. Once the changes are accepted, the PR is tested (if needed) into the Dockage CI pipeline, the container is deployed and tested (verification and functional tests) using docker-compose and Helm (if there is an associated Helm Chart). 49 | 3. The PR is merged by the reviewer(s) in the GitHub `main` branch. 50 | 4. Then our CI/CD system is going to push the container image to the different registries including the recently merged changes. 51 | 52 | ***NOTE***: Please note that, in terms of time, may be a slight difference between the appearance of the code in GitHub and the image with the changes in the different registries. 53 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # alpine [![Docker Pulls](https://badgen.net/docker/pulls/dockage/alpine?icon=docker&label=pulls)](https://hub.docker.com/r/dockage/alpine/) [![Docker Stars](https://badgen.net/docker/stars/dockage/alpine?icon=docker&label=stars)](https://hub.docker.com/r/dockage/alpine/) [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/dockage/alpine/ci.yml)](https://github.com/dockage/alpine/actions/workflows/ci.yaml) 2 | 3 | [Alpine Linux](https://alpinelinux.org) is a Linux distribution built around [musl libc](https://www.musl-libc.org) and [BusyBox](https://www.busybox.net). 4 | 5 | ## Supported tags and respective Dockerfile links 6 | | Versions | Size | Layer | 7 | |:------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------:| 8 | | [`3.20.0`, `3.20`, `3`, `latest`](https://github.com/dockage/alpine/blob/master/3.20/Dockerfile) | [![Docker Size (3.20)](https://badgen.net/docker/size/dockage/alpine/3.20?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.20)](https://badgen.net/docker/layers/dockage/alpine/3.20?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 9 | | [`3.20.0-openrc`, `3.20-openrc`, `3-openrc`](https://github.com/dockage/alpine/blob/master/3.20/Dockerfile) | [![Docker Size (3.20-openrc)](https://badgen.net/docker/size/dockage/alpine/3.20-openrc?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.20-openrc)](https://badgen.net/docker/layers/dockage/alpine/3.20-openrc?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 10 | | [`3.19.1`, `3.19`](https://github.com/dockage/alpine/blob/master/3.19/Dockerfile) | [![Docker Size (3.19)](https://badgen.net/docker/size/dockage/alpine/3.19?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.19)](https://badgen.net/docker/layers/dockage/alpine/3.19?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 11 | | [`3.19.1-openrc`, `3.19-openrc`](https://github.com/dockage/alpine/blob/master/3.19/Dockerfile) | [![Docker Size (3.19-openrc)](https://badgen.net/docker/size/dockage/alpine/3.19-openrc?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.19-openrc)](https://badgen.net/docker/layers/dockage/alpine/3.19-openrc?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 12 | | [`3.18.6`, `3.18`](https://github.com/dockage/alpine/blob/master/3.18/Dockerfile) | [![Docker Size (3.18)](https://badgen.net/docker/size/dockage/alpine/3.18?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.18)](https://badgen.net/docker/layers/dockage/alpine/3.18?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 13 | | [`3.18.6-openrc`, `3.18-openrc`](https://github.com/dockage/alpine/blob/master/3.18/Dockerfile) | [![Docker Size (3.18-openrc)](https://badgen.net/docker/size/dockage/alpine/3.18-openrc?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.18-openrc)](https://badgen.net/docker/layers/dockage/alpine/3.18-openrc?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 14 | | [`3.17.7`, `3.17`](https://github.com/dockage/alpine/blob/master/3.17/Dockerfile) | [![Docker Size (3.17)](https://badgen.net/docker/size/dockage/alpine/3.17?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.17)](https://badgen.net/docker/layers/dockage/alpine/3.17?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 15 | | [`3.17.7-openrc`, `3.17-openrc`](https://github.com/dockage/alpine/blob/master/3.17/Dockerfile) | [![Docker Size (3.17-openrc)](https://badgen.net/docker/size/dockage/alpine/3.17-openrc?icon=docker&label=size)](https://hub.docker.com/r/dockage/alpine) | [![Docker Layers (3.17-openrc)](https://badgen.net/docker/layers/dockage/alpine/3.17-openrc?icon=docker&label=layers)](https://hub.docker.com/r/dockage/alpine) | 16 | 17 | Dockerfile to build an alpine base image with a couple of extra packages and enable some repositories. 18 | 19 | The image enable the following repositories: 20 | 21 | - `@edge` ([dl-cdn.alpinelinux.org/alpine/edge/main](http://dl-cdn.alpinelinux.org/alpine/edge/main)) 22 | - `@edgecommunity` ([dl-cdn.alpinelinux.org/alpine/edge/community](http://dl-cdn.alpinelinux.org/alpine/edge/community)) 23 | - `@testing` ([dl-cdn.alpinelinux.org/alpine/edge/testing](http://dl-cdn.alpinelinux.org/alpine/edge/testing)) 24 | 25 | The image installs the following extra packages: 26 | 27 | - [`ca-certificates`](https://www.mozilla.org/en-US/about/governance/policies/security-group/certs/) Common CA certificates PEM files. 28 | - [`su-exec`](https://github.com/ncopa/su-exec) Switch user and group id, setgroups and exec. 29 | 30 | ## Quick reference 31 | * Where to get help: [website](https://dockage.dev/), [documentation](https://dockage.dev/docs/) 32 | * GitHub repo: [dockage/alpine](https://github.com/dockage/alpine) 33 | * Where to file issues: [GitHub Issues](https://github.com/dockage/alpine/issues) 34 | * Maintained by: The Dockage team (info at dockage.dev) 35 | * License(s) - [license](https://github.com/dockage/alpine/blob/main/LICENSE), check 3rd party documentation for license information 36 | -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- 1 | variable "CONTEXT" { 2 | default = "." 3 | } 4 | 5 | // Special target: https://github.com/docker/metadata-action#bake-definition 6 | target "docker-metadata-action" {} 7 | 8 | group "default" { 9 | targets = ["base"] 10 | } 11 | 12 | target "base" { 13 | inherits = ["docker-metadata-action"] 14 | context = "${CONTEXT}/" 15 | target = "base" 16 | platforms = [ 17 | "linux/386", 18 | "linux/amd64", 19 | "linux/arm/v6", 20 | "linux/arm/v7", 21 | "linux/arm64/v8", 22 | "linux/ppc64le", 23 | "linux/s390x" 24 | ] 25 | } 26 | 27 | target "openrc" { 28 | inherits = ["base"] 29 | target = "openrc" 30 | } 31 | --------------------------------------------------------------------------------