Skip to content

Commit 9bb15d5

Browse files
authored
Merge pull request #89 from cisagov/improvement/upgrade-to-bookworm
Upgrade from Debian Bullseye to Debian Bookworm
2 parents 98c0932 + 0cbe783 commit 9bb15d5

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7.16-slim-bullseye
1+
FROM python:3.7.17-slim-bookworm
22

33
###
44
# For a list of pre-defined annotation keys and value types see:

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ expects the secrets in a different location.
3232
To run the `cisagov/scanner` image via Docker:
3333

3434
```console
35-
docker run cisagov/scanner:1.3.6
35+
docker run cisagov/scanner:1.3.7
3636
```
3737

3838
### Running with Docker Compose ###
@@ -45,7 +45,7 @@ docker run cisagov/scanner:1.3.6
4545

4646
services:
4747
scanner:
48-
image: cisagov/scanner:1.3.6
48+
image: cisagov/scanner:1.3.7
4949
volumes:
5050
- type: bind
5151
source: <your_log_dir>
@@ -89,7 +89,7 @@ environment variables. See the
8989
9090
services:
9191
scanner:
92-
image: cisagov/scanner:1.3.6
92+
image: cisagov/scanner:1.3.7
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/scanner:1.3.6
129+
docker pull cisagov/scanner:1.3.7
130130
```
131131

132132
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -136,11 +136,11 @@ environment variables. See the
136136
The images of this container are tagged with [semantic
137137
versions](https://semver.org) of the underlying example project that they
138138
containerize. It is recommended that most users use a version tag (e.g.
139-
`:1.3.6`).
139+
`:1.3.7`).
140140

141141
| Image:tag | Description |
142142
|-----------|-------------|
143-
|`cisagov/scanner:1.3.6`| An exact release version. |
143+
|`cisagov/scanner:1.3.7`| An exact release version. |
144144
|`cisagov/scanner:1.3`| The most recent release matching the major and minor version numbers. |
145145
|`cisagov/scanner:1`| The most recent release matching the major version number. |
146146
|`cisagov/scanner:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -200,8 +200,8 @@ Build the image locally using this git repository as the [build context](https:/
200200

201201
```console
202202
docker build \
203-
--build-arg VERSION=1.3.6 \
204-
--tag cisagov/scanner:1.3.6 \
203+
--build-arg VERSION=1.3.7 \
204+
--tag cisagov/scanner:1.3.7 \
205205
https://github.com/cisagov/scanner.git#develop
206206
```
207207

@@ -231,9 +231,9 @@ Docker:
231231
docker buildx build \
232232
--file Dockerfile-x \
233233
--platform linux/amd64 \
234-
--build-arg VERSION=1.3.6 \
234+
--build-arg VERSION=1.3.7 \
235235
--output type=docker \
236-
--tag cisagov/scanner:1.3.6 .
236+
--tag cisagov/scanner:1.3.7 .
237237
```
238238

239239
## Contributing ##

src/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.6"
1+
__version__ = "1.3.7"

0 commit comments

Comments
 (0)