Skip to content

Commit

Permalink
Merge pull request #92 from cisagov/dependabot/docker/python-3.11.0-s…
Browse files Browse the repository at this point in the history
…lim-bullseye

Bump python from 3.10.7-slim-bullseye to 3.11.0-slim-bullseye
  • Loading branch information
jsf9k authored Nov 1, 2022
2 parents 0ad9cb0 + fc2b8bf commit f23d7c8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
IMAGE_NAME: cisagov/gatherer
PIP_CACHE_DIR: ~/.cache/pip
PLATFORMS: "linux/amd64,linux/arm/v6,linux/arm/v7,\
linux/arm64,linux/ppc64le,linux/s390x"
linux/arm64,linux/ppc64le,linux/s390x"
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
RUN_TMATE: ${{ secrets.RUN_TMATE }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION=unspecified

FROM python:3.10.7-slim-bullseye
FROM python:3.11.0-slim-bullseye

ARG VERSION

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ expects the secrets in a different location.
To run the `cisagov/gatherer` image via Docker:

```console
docker run cisagov/gatherer:1.5.7
docker run cisagov/gatherer:1.5.8
```

### Running with Docker Compose ###
Expand All @@ -45,7 +45,7 @@ docker run cisagov/gatherer:1.5.7

services:
gatherer:
image: cisagov/gatherer:1.5.7
image: cisagov/gatherer:1.5.8
volumes:
- type: bind
source: <your_output_dir>
Expand Down Expand Up @@ -91,7 +91,7 @@ environment variables. See the
services:
gatherer:
image: cisagov/gatherer:1.5.7
image: cisagov/gatherer:1.5.8
volumes:
- type: bind
source: <your_output_dir>
Expand Down Expand Up @@ -128,7 +128,7 @@ environment variables. See the
1. Pull the new image:

```console
docker pull cisagov/gatherer:1.5.7
docker pull cisagov/gatherer:1.5.8
```

1. Recreate and run the container by following the [previous instructions](#running-with-docker).
Expand All @@ -138,11 +138,11 @@ environment variables. See the
The images of this container are tagged with [semantic
versions](https://semver.org) of the underlying gatherer project that they
containerize. It is recommended that most users use a version tag (e.g.
`:1.5.7`).
`:1.5.8`).

| Image:tag | Description |
|-----------|-------------|
|`cisagov/gatherer:1.5.7`| An exact release version. |
|`cisagov/gatherer:1.5.8`| An exact release version. |
|`cisagov/gatherer:1.5`| The most recent release matching the major and minor version numbers. |
|`cisagov/gatherer:1`| The most recent release matching the major version number. |
|`cisagov/gatherer:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
Expand Down Expand Up @@ -205,8 +205,8 @@ Build the image locally using this git repository as the [build context](https:/

```console
docker build \
--build-arg VERSION=1.5.7 \
--tag cisagov/gatherer:1.5.7 \
--build-arg VERSION=1.5.8 \
--tag cisagov/gatherer:1.5.8 \
https://github.com/cisagov/gatherer.git#develop
```

Expand Down Expand Up @@ -236,9 +236,9 @@ Docker:
docker buildx build \
--file Dockerfile-x \
--platform linux/amd64 \
--build-arg VERSION=1.5.7 \
--build-arg VERSION=1.5.8 \
--output type=docker \
--tag cisagov/gatherer:1.5.7 .
--tag cisagov/gatherer:1.5.8 .
```

## Contributing ##
Expand Down
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.7
1.5.8

0 comments on commit f23d7c8

Please sign in to comment.