Skip to content

Commit 2aacaa1

Browse files
authored
Merge pull request #66 from cisagov/improvement/use-latest-python
Use the latest version of Python
2 parents b0fbfbd + f965c5f commit 2aacaa1

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.10.8-alpine
1+
FROM python:3.11.1-alpine
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
@@ -33,7 +33,7 @@ expects the secrets in a different location.
3333
To run the `cisagov/saver` image via Docker:
3434

3535
```console
36-
docker run cisagov/saver:1.3.1
36+
docker run cisagov/saver:1.3.2
3737
```
3838

3939
### Running with Docker Compose ###
@@ -46,7 +46,7 @@ docker run cisagov/saver:1.3.1
4646

4747
services:
4848
saver:
49-
image: cisagov/saver:1.3.1
49+
image: cisagov/saver:1.3.2
5050
volumes:
5151
- type: bind
5252
source: <your_log_dir>
@@ -92,7 +92,7 @@ environment variables. See the
9292
9393
services:
9494
trustymail_reporter:
95-
image: cisagov/saver:1.3.1
95+
image: cisagov/saver:1.3.2
9696
volumes:
9797
- type: bind
9898
source: <your_log_dir>
@@ -129,7 +129,7 @@ environment variables. See the
129129
1. Pull the new image:
130130

131131
```console
132-
docker pull cisagov/saver:1.3.1
132+
docker pull cisagov/saver:1.3.2
133133
```
134134

135135
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -139,11 +139,11 @@ environment variables. See the
139139
The images of this container are tagged with [semantic
140140
versions](https://semver.org) of the underlying saver project that they
141141
containerize. It is recommended that most users use a version tag (e.g.
142-
`:1.3.1`).
142+
`:1.3.2`).
143143

144144
| Image:tag | Description |
145145
|-----------|-------------|
146-
|`cisagov/saver:1.3.1`| An exact release version. |
146+
|`cisagov/saver:1.3.2`| An exact release version. |
147147
|`cisagov/saver:1.3`| The most recent release matching the major and minor version numbers. |
148148
|`cisagov/saver:1`| The most recent release matching the major version number. |
149149
|`cisagov/saver:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -206,8 +206,8 @@ Build the image locally using this git repository as the [build context](https:/
206206

207207
```console
208208
docker build \
209-
--build-arg VERSION=1.3.1 \
210-
--tag cisagov/saver:1.3.1 \
209+
--build-arg VERSION=1.3.2 \
210+
--tag cisagov/saver:1.3.2 \
211211
https://github.com/cisagov/saver.git#develop
212212
```
213213

@@ -237,9 +237,9 @@ Docker:
237237
docker buildx build \
238238
--file Dockerfile-x \
239239
--platform linux/amd64 \
240-
--build-arg VERSION=1.3.1 \
240+
--build-arg VERSION=1.3.2 \
241241
--output type=docker \
242-
--tag cisagov/saver:1.3.1 .
242+
--tag cisagov/saver:1.3.2 .
243243
```
244244

245245
## Contributing ##

src/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.1"
1+
__version__ = "1.3.2"

0 commit comments

Comments
 (0)