Skip to content

Commit 39b5453

Browse files
authored
Prepare for versioned release (#83)
1 parent 5b72d57 commit 39b5453

2 files changed

Lines changed: 25 additions & 19 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.9.0] - 2024-03-14
10+
11+
### Changed in 3.9.0
12+
13+
- Updated to SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.9.0-24071"
14+
915
## [3.8.3] - 2024-03-14
1016

1117
### Changed in 3.8.3

Dockerfile

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ FROM ${BASE_IMAGE}
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.3-24043"
7+
ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.9.0-24071"
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

1111
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.3" \
21-
SenzingAPI="3.8.3"
19+
Maintainer="support@senzing.com" \
20+
Version="3.9.0" \
21+
SenzingAPI="3.9.0"
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)