https://github.com/cicirello/pyaction-lite

A base Docker image for Github Actions implemented in Python

https://github.com/cicirello/pyaction-lite

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.5%) to scientific vocabulary

Keywords

alpine docker-image github-actions linux python

Keywords from Contributors

sequences archival projection fuel transformers packaging benchmarking randomization clade tracing
Last synced: 5 months ago · JSON representation

Repository

A base Docker image for Github Actions implemented in Python

Basic Info
  • Host: GitHub
  • Owner: cicirello
  • License: mit
  • Language: Dockerfile
  • Default Branch: master
  • Homepage:
  • Size: 93.8 KB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 40
Topics
alpine docker-image github-actions linux python
Created over 5 years ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

pyaction-lite

A base Docker image for Github Actions implemented in Python

| Docker Hub | Docker Image Version (latest by date) Docker Pulls | | :--- | :--- | | GitHub | GitHub release (latest by date) | | Image Stats | Docker Image Size (latest by date) | | Build Status | build | | License | GitHub | | Support | GitHub Sponsors Liberapay Ko-Fi |

Summary

This Docker image is designed to support implementing Github Actions with Python. It uses Alpine Linux as a base to keep the image relatively small for faster loading of the Github Action. It then adds Python 3, and only Python 3. By using a prebuilt image, it prevents the Github Action from requiring an installation of python each time the action runs. It is not limited to use with Github Actions, so other use-cases where you only need python are applicable.

The pyaction-lite Docker image is based on pyaction. However, pyaction additionally includes git, so the pyaction image is a bit larger than pyaction-lite.

Multiplatform Image

pyaction-lite has the following platforms available: * linux/386 * linux/amd64 * linux/arm/v6 * linux/arm/v7 * linux/arm64 * linux/ppc64le * linux/s390x

Source Repository and Builds

The source repository is maintained on GitHub. The images are built on Github and pushed to Docker Hub, as well as the Github Container Registry using Github Actions.

Docker Tags and Versioning Scheme

Each image pushed to Docker Hub and the Github Container Registry is tagged as follows: * The tag latest indicates, well, the latest image. * Tags of the form MAJOR.MINOR.PATCH (such as 3.13.5) indicate the SemVer of the Alpine image used as the base. * Tags of the form MAJOR.MINOR (e.g., 3.13) correspond to the most recent patch level of the Alpine image used as the base. For example, if 3.13.5 is the latest release, then 3.13 maps to this as well. * Tags of the form MAJOR (e.g., 3) correspond to the most recent patch level of the Alpine image used as the base, with major corresponding major version. For example, if 3.13.5 is the latest release, then 3 maps to this as well.

Semantic Versioning uses version numbers of the form: MAJOR.MINOR.PATCH, where differences in MAJOR correspond to incompatible changes, differences in MINOR correspond to introduction of backwards compatible new functionality, and PATCH corresponds to backwards compatible bug fixes.

Installation and Usage

The pre-built image is hosted on both Docker Hub and the Github Container Registry. You can use it in the following ways.

Docker Pull Command

Pull the latest image from Docker Hub with the following (replace latest with a specific version number if you prefer):

docker pull cicirello/pyaction-lite:latest

Pull from the Github Container Registry with:

docker pull ghcr.io/cicirello/pyaction-lite:latest

Use as a base image in a Dockerfile

Use as a base image in a Dockerfile (replace latest with a specific version number if you prefer):

```Dockerfile FROM cicirello/pyaction-lite:latest

The rest of your Dockerfile would go here.

```

Or you can use as a base image (via the Github Container Registry) with:

```Dockerfile FROM ghcr.io/cicirello/pyaction-lite:latest

The rest of your Dockerfile would go here.

```

License

Source Code License

The source code, including the Dockerfile and anything else within the Github repository for pyaction-lite, is licensed under the MIT License.

Image Licenses

As with all pre-built Docker images, the image itself (once built, or obtained from Docker Hub or the Github Container Registry) contains software that is covered by a variety of licenses. Since the base image is Alpine, this would include the licenses of the components of Alpine, as well as the licenses for Python.

If you build and distribute an image containing your software, using pyaction-lite as the base image, it is your responsibility to follow the licenses of all of the software contained within the image.

Owner

  • Name: Vincent A. Cicirello
  • Login: cicirello
  • Kind: user
  • Location: Galloway, NJ
  • Company: Stockton University

Vincent A. Cicirello is a researcher in AI, evolutionary computation, and swarm intelligence.

GitHub Events

Total
  • Release event: 3
  • Delete event: 5
  • Issue comment event: 2
  • Push event: 4
  • Pull request review event: 3
  • Pull request event: 8
  • Create event: 8
Last Year
  • Release event: 3
  • Delete event: 5
  • Issue comment event: 2
  • Push event: 4
  • Pull request review event: 3
  • Pull request event: 8
  • Create event: 8

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 79
  • Total Committers: 3
  • Avg Commits per committer: 26.333
  • Development Distribution Score (DDS): 0.43
Past Year
  • Commits: 5
  • Committers: 2
  • Avg Commits per committer: 2.5
  • Development Distribution Score (DDS): 0.2
Top Committers
Name Email Commits
dependabot[bot] 4****] 45
Vincent A. Cicirello c****o 33
snyk-bot s****t@s****o 1
Committer Domains (Top 20 + Academic)
snyk.io: 1

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 1
  • Total pull requests: 68
  • Average time to close issues: about 17 hours
  • Average time to close pull requests: 4 days
  • Total issue authors: 1
  • Total pull request authors: 3
  • Average comments per issue: 1.0
  • Average comments per pull request: 0.19
  • Merged pull requests: 55
  • Bot issues: 0
  • Bot pull requests: 56
Past Year
  • Issues: 0
  • Pull requests: 9
  • Average time to close issues: N/A
  • Average time to close pull requests: 14 days
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.44
  • Merged pull requests: 3
  • Bot issues: 0
  • Bot pull requests: 9
Top Authors
Issue Authors
  • cicirello (1)
Pull Request Authors
  • dependabot[bot] (60)
  • cicirello (14)
  • snyk-bot (1)
Top Labels
Issue Labels
bug (1)
Pull Request Labels
dependencies (63) docker (47) github_actions (16) hacktoberfest-accepted (1)

Dependencies

.github/workflows/docker-image.yml actions
  • actions/checkout v3 composite
.github/workflows/docker-manual-publish.yml actions
  • actions/checkout v3 composite
  • docker/build-push-action v3 composite
  • docker/login-action v2 composite
  • docker/setup-buildx-action v2 composite
  • docker/setup-qemu-action v2 composite
.github/workflows/docker-publish.yml actions
  • actions/checkout v3 composite
  • docker/build-push-action v3 composite
  • docker/login-action v2 composite
  • docker/setup-buildx-action v2 composite
  • docker/setup-qemu-action v2 composite
Dockerfile docker
  • alpine 3.17.1 build