Skip to content

Commit 5b72d57

Browse files
authored
github-util: Update FROM version (#82)
* #1 Update version * Prepare for versioned release
1 parent e744e39 commit 5b72d57

2 files changed

Lines changed: 27 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
[markdownlint](https://dlaa.me/markdownlint/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [3.8.3] - 2024-03-14
10+
11+
### Changed in 3.8.3
12+
13+
- Updated to `debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df352d2b537cb96`
14+
- Updated to SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.8.3-24043"
915

1016
## [3.8.2] - 2024-01-19
1117

Dockerfile

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
ARG BASE_IMAGE=debian:11.8-slim@sha256:41c3fecb70015fd9c72d6df95573de3f92d5f4f46fdabe8dbd8d2bfb1531594d
1+
ARG BASE_IMAGE=debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df352d2b537cb96
22
FROM ${BASE_IMAGE}
33

44
# Create the build image.
55

66
ARG SENZING_ACCEPT_EULA="I_ACCEPT_THE_SENZING_EULA"
7-
ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.8.2-24011"
7+
ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.8.3-24043"
88
ARG SENZING_APT_REPOSITORY_NAME="senzingrepo_1.0.1-1_all.deb"
99
ARG SENZING_APT_REPOSITORY_URL="https://senzing-production-apt.s3.amazonaws.com"
1010

11-
ENV REFRESHED_AT=2024-01-19
11+
ENV REFRESHED_AT=2024-03-14
1212

1313
ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \
14-
SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \
15-
SENZING_APT_REPOSITORY_NAME=${SENZING_APT_REPOSITORY_NAME} \
16-
SENZING_APT_REPOSITORY_URL=${SENZING_APT_REPOSITORY_URL}
14+
SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \
15+
SENZING_APT_REPOSITORY_NAME=${SENZING_APT_REPOSITORY_NAME} \
16+
SENZING_APT_REPOSITORY_URL=${SENZING_APT_REPOSITORY_URL}
1717

1818
LABEL Name="senzing/senzingapi-runtime" \
19-
Maintainer="support@senzing.com" \
20-
Version="3.8.2" \
21-
SenzingAPI="3.8.2"
19+
Maintainer="support@senzing.com" \
20+
Version="3.8.3" \
21+
SenzingAPI="3.8.3"
2222

2323
# Run as "root" for system installation.
2424

@@ -31,26 +31,26 @@ ENV TERM=xterm
3131
# Install packages via apt.
3232

3333
RUN apt-get update \
34-
&& apt-get -y install \
35-
wget
34+
&& apt-get -y install \
35+
wget
3636

3737
# Install Senzing repository index.
3838

3939
RUN wget -qO \
40-
/${SENZING_APT_REPOSITORY_NAME} \
41-
${SENZING_APT_REPOSITORY_URL}/${SENZING_APT_REPOSITORY_NAME} \
42-
&& apt-get -y install \
43-
/${SENZING_APT_REPOSITORY_NAME} \
44-
&& apt-get update \
45-
&& rm /${SENZING_APT_REPOSITORY_NAME}
40+
/${SENZING_APT_REPOSITORY_NAME} \
41+
${SENZING_APT_REPOSITORY_URL}/${SENZING_APT_REPOSITORY_NAME} \
42+
&& apt-get -y install \
43+
/${SENZING_APT_REPOSITORY_NAME} \
44+
&& apt-get update \
45+
&& rm /${SENZING_APT_REPOSITORY_NAME}
4646

4747
# Install Senzing package.
4848

4949
RUN apt-get -y install \
50-
libpq5 \
51-
${SENZING_APT_INSTALL_PACKAGE} \
52-
jq \
53-
&& apt-get clean
50+
libpq5 \
51+
${SENZING_APT_INSTALL_PACKAGE} \
52+
jq \
53+
&& apt-get clean
5454

5555
# Set environment variables for root.
5656

0 commit comments

Comments
 (0)