Skip to content

Commit 152fb3e

Browse files
authored
Merge pull request #115 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 4a8bc53 + 62e2864 commit 152fb3e

File tree

5 files changed

+93
-93
lines changed

5 files changed

+93
-93
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
@@ -30,7 +30,7 @@ expects the secrets in a different location.
3030
To run the `cisagov/pshtt_reporter` image via Docker:
3131

3232
```console
33-
docker run cisagov/pshtt_reporter:1.4.0
33+
docker run cisagov/pshtt_reporter:1.4.1
3434
```
3535

3636
### Running with Docker Compose ###
@@ -43,7 +43,7 @@ docker run cisagov/pshtt_reporter:1.4.0
4343

4444
services:
4545
pshtt_reporter:
46-
image: cisagov/pshtt_reporter:1.4.0
46+
image: cisagov/pshtt_reporter:1.4.1
4747
volumes:
4848
- type: bind
4949
source: <your_log_dir>
@@ -89,7 +89,7 @@ environment variables. See the
8989
9090
services:
9191
pshtt_reporter:
92-
image: cisagov/pshtt_reporter:1.4.0
92+
image: cisagov/pshtt_reporter:1.4.1
9393
volumes:
9494
- type: bind
9595
source: <your_log_dir>
@@ -126,7 +126,7 @@ environment variables. See the
126126
1. Pull the new image:
127127

128128
```console
129-
docker pull cisagov/pshtt_reporter:1.4.0
129+
docker pull cisagov/pshtt_reporter:1.4.1
130130
```
131131

132132
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -165,11 +165,11 @@ and then update dependencies as you would above.
165165
The images of this container are tagged with [semantic
166166
versions](https://semver.org) of the underlying example project that they
167167
containerize. It is recommended that most users use a version tag (e.g.
168-
`:1.4.0`).
168+
`:1.4.1`).
169169

170170
| Image:tag | Description |
171171
|-----------|-------------|
172-
|`cisagov/pshtt_reporter:1.4.0`| An exact release version. |
172+
|`cisagov/pshtt_reporter:1.4.1`| An exact release version. |
173173
|`cisagov/pshtt_reporter:1.4`| The most recent release matching the major and minor version numbers. |
174174
|`cisagov/pshtt_reporter:1`| The most recent release matching the major version number. |
175175
|`cisagov/pshtt_reporter:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -233,7 +233,7 @@ Build the image locally using this git repository as the [build context](https:/
233233

234234
```console
235235
docker build \
236-
--tag cisagov/pshtt_reporter:1.4.0 \
236+
--tag cisagov/pshtt_reporter:1.4.1 \
237237
https://github.com/cisagov/pshtt_reporter.git#develop
238238
```
239239

@@ -264,7 +264,7 @@ Docker:
264264
--file Dockerfile-x \
265265
--platform linux/amd64 \
266266
--output type=docker \
267-
--tag cisagov/pshtt_reporter:1.4.0 .
267+
--tag cisagov/pshtt_reporter:1.4.1 .
268268
```
269269

270270
## Contributing ##

src/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ numpy = ">=2.4.1"
1313

1414
# This version should match the version of Python in the image
1515
[requires]
16-
python_full_version = "3.14.2"
16+
python_full_version = "3.14.3"

src/Pipfile.lock

Lines changed: 81 additions & 81 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-
1.4.0
1+
1.4.1

0 commit comments

Comments
 (0)