Skip to content

Commit d27cd3b

Browse files
authored
Merge pull request #137 from cisagov/dependabot/docker/library/python-3.14.1-slim-trixie
Bump library/python from 3.14.0-slim-trixie to 3.14.1-slim-trixie
2 parents bb736c9 + e959e13 commit d27cd3b

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Official Docker images are in the form library/<app> while non-official
22
# images are in the form <user>/<app>.
3-
FROM docker.io/library/python:3.14.0-slim-trixie AS compile-stage
3+
FROM docker.io/library/python:3.14.1-slim-trixie AS compile-stage
44

55
###
66
# Unprivileged user variables
@@ -51,7 +51,7 @@ RUN pipenv install --clear --deploy --extra-pip-args "--no-cache-dir" --verbose
5151

5252
# Official Docker images are in the form library/<app> while non-official
5353
# images are in the form <user>/<app>.
54-
FROM docker.io/library/python:3.14.0-slim-trixie AS build-stage
54+
FROM docker.io/library/python:3.14.1-slim-trixie AS build-stage
5555

5656
###
5757
# For a list of pre-defined annotation keys and value types see:

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ expects the secrets in a different location.
3333
To run the `cisagov/gatherer` image via Docker:
3434

3535
```console
36-
docker run cisagov/gatherer:2.0.0
36+
docker run cisagov/gatherer:2.0.1
3737
```
3838

3939
### Running with Docker Compose ###
@@ -46,7 +46,7 @@ docker run cisagov/gatherer:2.0.0
4646

4747
services:
4848
gatherer:
49-
image: cisagov/gatherer:2.0.0
49+
image: cisagov/gatherer:2.0.1
5050
volumes:
5151
- source: <your_output_dir>
5252
target: /home/cisa/shared
@@ -92,7 +92,7 @@ environment variables. See the
9292
9393
services:
9494
gatherer:
95-
image: cisagov/gatherer:2.0.0
95+
image: cisagov/gatherer:2.0.1
9696
secrets:
9797
- source: database_creds
9898
target: database_creds.yml
@@ -129,7 +129,7 @@ environment variables. See the
129129
1. Pull the new image:
130130

131131
```console
132-
docker pull cisagov/gatherer:2.0.0
132+
docker pull cisagov/gatherer:2.0.1
133133
```
134134

135135
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -168,11 +168,11 @@ and then update dependencies as you would above.
168168
The images of this container are tagged with [semantic
169169
versions](https://semver.org) of the underlying gatherer project that they
170170
containerize. It is recommended that most users use a version tag (e.g.
171-
`:2.0.0`).
171+
`:2.0.1`).
172172

173173
| Image:tag | Description |
174174
|-----------|-------------|
175-
|`cisagov/gatherer:2.0.0`| An exact release version. |
175+
|`cisagov/gatherer:2.0.1`| An exact release version. |
176176
|`cisagov/gatherer:2.0`| The most recent release matching the major and minor version numbers. |
177177
|`cisagov/gatherer:2`| The most recent release matching the major version number. |
178178
|`cisagov/gatherer:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -235,7 +235,7 @@ Build the image locally using this git repository as the [build context](https:/
235235

236236
```console
237237
docker build \
238-
--tag cisagov/gatherer:2.0.0 \
238+
--tag cisagov/gatherer:2.0.1 \
239239
https://github.com/cisagov/gatherer.git#develop
240240
```
241241

@@ -266,7 +266,7 @@ Docker:
266266
--file Dockerfile-x \
267267
--platform linux/amd64 \
268268
--output type=docker \
269-
--tag cisagov/gatherer:2.0.0 .
269+
--tag cisagov/gatherer:2.0.1 .
270270
```
271271

272272
## Contributing ##

src/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

0 commit comments

Comments
 (0)