Skip to content

Commit dea2cc1

Browse files
authored
Merge pull request #145 from cisagov/dependabot/docker/library/python-3.14.3-slim-trixie
Bump library/python from 3.14.2-slim-trixie to 3.14.3-slim-trixie
2 parents 62edb7f + 32dfe7d commit dea2cc1

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
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.2-slim-trixie AS compile-stage
3+
FROM docker.io/library/python:3.14.3-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.2-slim-trixie AS build-stage
54+
FROM docker.io/library/python:3.14.3-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
@@ -34,7 +34,7 @@ expects the secrets in a different location.
3434
To run the `cisagov/gatherer` image via Docker:
3535

3636
```console
37-
docker run cisagov/gatherer:2.0.2
37+
docker run cisagov/gatherer:2.0.3
3838
```
3939

4040
### Running with Docker Compose ###
@@ -47,7 +47,7 @@ docker run cisagov/gatherer:2.0.2
4747

4848
services:
4949
gatherer:
50-
image: cisagov/gatherer:2.0.2
50+
image: cisagov/gatherer:2.0.3
5151
volumes:
5252
- source: <your_output_dir>
5353
target: /home/cisa/shared
@@ -93,7 +93,7 @@ environment variables. See the
9393
9494
services:
9595
gatherer:
96-
image: cisagov/gatherer:2.0.2
96+
image: cisagov/gatherer:2.0.3
9797
secrets:
9898
- source: database_creds
9999
target: database_creds.yml
@@ -130,7 +130,7 @@ environment variables. See the
130130
1. Pull the new image:
131131

132132
```console
133-
docker pull cisagov/gatherer:2.0.2
133+
docker pull cisagov/gatherer:2.0.3
134134
```
135135

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

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

237237
```console
238238
docker build \
239-
--tag cisagov/gatherer:2.0.2 \
239+
--tag cisagov/gatherer:2.0.3 \
240240
https://github.com/cisagov/gatherer.git#develop
241241
```
242242

@@ -267,7 +267,7 @@ Docker:
267267
--file Dockerfile-x \
268268
--platform linux/amd64 \
269269
--output type=docker \
270-
--tag cisagov/gatherer:2.0.2 .
270+
--tag cisagov/gatherer:2.0.3 .
271271
```
272272

273273
## Contributing ##

src/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ tldextract = "*"
2020

2121
# This version should match the version of Python in the image
2222
[requires]
23-
python_full_version = "3.14.2"
23+
python_full_version = "3.14.3"

src/Pipfile.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.2
1+
2.0.3

0 commit comments

Comments
 (0)