Skip to content

Commit f6712ec

Browse files
authored
Merge pull request #186 from cisagov/maintenance/update_image_dependencies
Update image dependencies
2 parents 223712e + 1caeb9b commit f6712ec

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ 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=24.3.1
20-
ENV PYTHON_PIPENV_VERSION=2024.4.0
19+
ENV PYTHON_PIP_VERSION=25.0.1
20+
ENV PYTHON_PIPENV_VERSION=2024.4.1
2121
ENV PYTHON_SETUPTOOLS_VERSION=75.8.0
2222
ENV PYTHON_WHEEL_VERSION=0.45.1
2323

@@ -28,8 +28,8 @@ RUN apk --no-cache add \
2828
py3-pip=24.3.1-r0 \
2929
py3-setuptools=70.3.0-r0 \
3030
py3-wheel=0.43.0-r0 \
31-
python3-dev=3.12.8-r1 \
32-
python3=3.12.8-r1
31+
python3-dev=3.12.9-r0 \
32+
python3=3.12.9-r0
3333

3434
###
3535
# Create a Python virtual environment (venv) for setup (due to PEP 668); install the
@@ -72,7 +72,7 @@ RUN pipenv check --verbose \
7272

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

7777
###
7878
# 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
@@ -31,7 +31,7 @@ hosted [here](https://www.dhs.gov/code.json).
3131
To run the `cisagov/code-gov-update` image via Docker:
3232

3333
```console
34-
docker run cisagov/code-gov-update:0.3.0-rc.3
34+
docker run cisagov/code-gov-update:0.3.0-rc.4
3535
```
3636

3737
### Running with Docker Compose ###
@@ -44,7 +44,7 @@ docker run cisagov/code-gov-update:0.3.0-rc.3
4444

4545
services:
4646
update:
47-
image: cisagov/code-gov-update:0.3.0-rc.3
47+
image: cisagov/code-gov-update:0.3.0-rc.4
4848
init: true
4949
environment:
5050
- AWS_CONFIG_FILE=path/to/aws_config
@@ -92,7 +92,7 @@ environment variables. See the
9292
9393
services:
9494
update:
95-
image: cisagov/code-gov-update:0.3.0-rc.3
95+
image: cisagov/code-gov-update:0.3.0-rc.4
9696
init: true
9797
secrets:
9898
- source: aws_config
@@ -131,7 +131,7 @@ environment variables. See the
131131
1. Pull the new image:
132132

133133
```console
134-
docker pull cisagov/code-gov-update:0.3.0-rc.3
134+
docker pull cisagov/code-gov-update:0.3.0-rc.4
135135
```
136136

137137
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -170,11 +170,11 @@ and then update dependencies as you would above.
170170
The images of this container are tagged with [semantic
171171
versions](https://semver.org) of the underlying example project that they
172172
containerize. It is recommended that most users use a version tag (e.g.
173-
`:0.3.0-rc.3`).
173+
`:0.3.0-rc.4`).
174174

175175
| Image:tag | Description |
176176
|-----------|-------------|
177-
|`cisagov/code-gov-update:0.3.0-rc.3`| An exact release version. |
177+
|`cisagov/code-gov-update:0.3.0-rc.4`| An exact release version. |
178178
|`cisagov/code-gov-update:0.3`| The most recent release matching the major and minor version numbers. |
179179
|`cisagov/code-gov-update:0`| The most recent release matching the major version number. |
180180
|`cisagov/code-gov-update:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -239,7 +239,7 @@ Build the image locally using this git repository as the [build context](https:/
239239

240240
```console
241241
docker build \
242-
--tag cisagov/code-gov-update:0.3.0-rc.3 \
242+
--tag cisagov/code-gov-update:0.3.0-rc.4 \
243243
https://github.com/cisagov/code-gov-update.git#develop
244244
```
245245

@@ -270,7 +270,7 @@ Docker:
270270
--file Dockerfile-x \
271271
--platform linux/amd64 \
272272
--output type=docker \
273-
--tag cisagov/code-gov-update:0.3.0-rc.3 .
273+
--tag cisagov/code-gov-update:0.3.0-rc.4 .
274274
```
275275

276276
## Contributing ##

src/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ docopt = ">=0.6.2"
1818
llnl-scraper = {file = "https://api.github.com/repos/LLNL/scraper/tarball/536a72ce1ceb2e209281ff72a2ed59e735d45c33"}
1919

2020
[requires]
21-
python_full_version = "3.12.8"
21+
python_full_version = "3.12.9"

src/Pipfile.lock

Lines changed: 20 additions & 20 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.3.0-rc.3
1+
0.3.0-rc.4

0 commit comments

Comments
 (0)