Skip to content

Commit 2f7b15d

Browse files
authored
Merge pull request #116 from cisagov/maintenance/update_image_dependencies
Update image dependencies
2 parents 286ffb2 + d89a862 commit 2f7b15d

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV CISA_HOME="/home/${CISA_USER}"
1616
ENV VIRTUAL_ENV="${CISA_HOME}/.venv"
1717

1818
# Versions of the Python packages installed directly
19-
ENV PYTHON_PIP_VERSION=25.0
19+
ENV PYTHON_PIP_VERSION=25.0.1
2020
ENV PYTHON_PIPENV_VERSION=2024.4.1
2121
ENV PYTHON_SETUPTOOLS_VERSION=75.8.0
2222
ENV PYTHON_WHEEL_VERSION=0.45.1
@@ -26,8 +26,8 @@ RUN apk --no-cache add \
2626
py3-pip=24.3.1-r0 \
2727
py3-setuptools=70.3.0-r0 \
2828
py3-wheel=0.43.0-r0 \
29-
python3-dev=3.12.8-r1 \
30-
python3=3.12.8-r1
29+
python3-dev=3.12.9-r0 \
30+
python3=3.12.9-r0
3131

3232
###
3333
# Create a Python virtual environment (venv) for setup (due to PEP 668); install the
@@ -70,7 +70,7 @@ RUN pipenv check --verbose \
7070

7171
# The version of Python used here should match the version of the Alpine
7272
# python3 package installed in the compile-stage.
73-
FROM docker.io/library/python:3.12.8-alpine3.21 AS build-stage
73+
FROM docker.io/library/python:3.12.9-alpine3.21 AS build-stage
7474

7575
###
7676
# For a list of pre-defined annotation keys and value types see:

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Python library. Then it will output CSVs with agency and domain level results.
2323
To run the `cisagov/vdp-scanner` image via Docker:
2424

2525
```console
26-
docker run cisagov/vdp-scanner:0.2.0-dev.7
26+
docker run cisagov/vdp-scanner:0.2.0-dev.8
2727
```
2828

2929
### Running with Docker Compose ###
@@ -36,7 +36,7 @@ docker run cisagov/vdp-scanner:0.2.0-dev.7
3636

3737
services:
3838
vdp-scanner:
39-
image: cisagov/vdp-scanner:0.2.0-dev.7
39+
image: cisagov/vdp-scanner:0.2.0-dev.8
4040
volumes:
4141
- .:/task/host_mount
4242
```
@@ -74,7 +74,7 @@ docker run cisagov/vdp-scanner:0.2.0-dev.7
7474
1. Pull the new image:
7575

7676
```console
77-
docker pull cisagov/vdp-scanner:0.2.0-dev.7
77+
docker pull cisagov/vdp-scanner:0.2.0-dev.8
7878
```
7979

8080
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -113,11 +113,11 @@ and then update dependencies as you would above.
113113
The images of this container are tagged with [semantic
114114
versions](https://semver.org) of the underlying example project that they
115115
containerize. It is recommended that most users use a version tag (e.g.
116-
`:0.2.0-dev.7`).
116+
`:0.2.0-dev.8`).
117117

118118
| Image:tag | Description |
119119
|-----------|-------------|
120-
|`cisagov/vdp-scanner:0.2.0-dev.7`| An exact release version. |
120+
|`cisagov/vdp-scanner:0.2.0-dev.8`| An exact release version. |
121121
|`cisagov/vdp-scanner:0.2`| The most recent release matching the major and minor version numbers. |
122122
|`cisagov/vdp-scanner:0`| The most recent release matching the major version number. |
123123
|`cisagov/vdp-scanner:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -183,7 +183,7 @@ Build the image locally using this git repository as the [build context](https:/
183183

184184
```console
185185
docker build \
186-
--tag cisagov/vdp-scanner:0.2.0-dev.7 \
186+
--tag cisagov/vdp-scanner:0.2.0-dev.8 \
187187
https://github.com/cisagov/vdp-scanner-docker.git#develop
188188
```
189189

@@ -214,7 +214,7 @@ Docker:
214214
--file Dockerfile-x \
215215
--platform linux/amd64 \
216216
--output type=docker \
217-
--tag cisagov/vdp-scanner:0.2.0-dev.7 .
217+
--tag cisagov/vdp-scanner:0.2.0-dev.8 .
218218
```
219219

220220
## Contributing ##

src/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ requests = "*"
1313
urllib3 = "*"
1414

1515
[requires]
16-
python_full_version = "3.12.8"
16+
python_full_version = "3.12.9"

src/Pipfile.lock

Lines changed: 6 additions & 6 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-
0.2.0-dev.7
1+
0.2.0-dev.8

0 commit comments

Comments
 (0)