Skip to content

Commit

Permalink
Merge pull request #15 from cicirello/development
Browse files Browse the repository at this point in the history
Prep for release [3.12.1]
  • Loading branch information
cicirello authored Oct 22, 2020
2 parents dc07044 + 330cd59 commit 1f30a83
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
target-branch: "development"
target-branch: "master"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "development"
target-branch: "master"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build

on:
push:
branches: [ master, development ]
branches: [ master ]
pull_request:
branches: [ master ]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://www.cicirello.org
# Source repository: https://github.com/cicirello/alpine-plus-plus
# Source licensed under the MIT License: https://github.com/cicirello/alpine-plus-plus/blob/master/LICENSE
FROM alpine:3.12.0
FROM alpine:3.12.1
LABEL maintainer="development@cicirello.org" \
org.opencontainers.image.description="A lightweight docker image for shell scripting and git, \
consisting of Alpine Linux with the addition of bash, coreutils, findutils, gawk, and git." \
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@ The [source repository](https://github.com/cicirello/alpine-plus-plus) is mainta

## Docker Tags and Versioning Scheme

alpine-plus-plus uses [Semantic Versioning](https://semver.org/) with
version numbers of the form: MAJOR.MINOR.PATCH, where differences in
Each image pushed to Docker Hub and the Github Container Registry is tagged as follows:
* The tag `latest` indicates, well, the latest image.
* __Beginning with version 3.12.1__: tags of the form MAJOR.MINOR.PATCH (such as 3.12.1) indicate the SemVer of the __Alpine__ image used as the base.
* __Prior to version 3.12.1__: tags of the form MAJOR.MINOR.PATCH (such as 1.0.0) indicate the SemVer of the image, where the base image was Alpine 3.12.0.

[Semantic Versioning](https://semver.org/) 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.

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 1.0.0) indicate the SemVer of the image.


## Installation and Usage

Expand Down

0 comments on commit 1f30a83

Please sign in to comment.