-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,21 @@ FROM ${BASE_IMAGE} | |
# Create the build image. | ||
|
||
ARG SENZING_ACCEPT_EULA="I_ACCEPT_THE_SENZING_EULA" | ||
ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.8.3-24043" | ||
ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.9.0-24071" | ||
ARG SENZING_APT_REPOSITORY_NAME="senzingrepo_1.0.1-1_all.deb" | ||
ARG SENZING_APT_REPOSITORY_URL="https://senzing-production-apt.s3.amazonaws.com" | ||
|
||
ENV REFRESHED_AT=2024-03-14 | ||
|
||
ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \ | ||
SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \ | ||
SENZING_APT_REPOSITORY_NAME=${SENZING_APT_REPOSITORY_NAME} \ | ||
SENZING_APT_REPOSITORY_URL=${SENZING_APT_REPOSITORY_URL} | ||
SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \ | ||
SENZING_APT_REPOSITORY_NAME=${SENZING_APT_REPOSITORY_NAME} \ | ||
SENZING_APT_REPOSITORY_URL=${SENZING_APT_REPOSITORY_URL} | ||
|
||
LABEL Name="senzing/senzingapi-runtime" \ | ||
Maintainer="[email protected]" \ | ||
Version="3.8.3" \ | ||
SenzingAPI="3.8.3" | ||
Maintainer="[email protected]" \ | ||
Version="3.9.0" \ | ||
SenzingAPI="3.9.0" | ||
|
||
# Run as "root" for system installation. | ||
|
||
|
@@ -31,26 +31,26 @@ ENV TERM=xterm | |
# Install packages via apt. | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y install \ | ||
wget | ||
&& apt-get -y install \ | ||
wget | ||
|
||
# Install Senzing repository index. | ||
|
||
RUN wget -qO \ | ||
/${SENZING_APT_REPOSITORY_NAME} \ | ||
${SENZING_APT_REPOSITORY_URL}/${SENZING_APT_REPOSITORY_NAME} \ | ||
&& apt-get -y install \ | ||
/${SENZING_APT_REPOSITORY_NAME} \ | ||
&& apt-get update \ | ||
&& rm /${SENZING_APT_REPOSITORY_NAME} | ||
/${SENZING_APT_REPOSITORY_NAME} \ | ||
${SENZING_APT_REPOSITORY_URL}/${SENZING_APT_REPOSITORY_NAME} \ | ||
&& apt-get -y install \ | ||
/${SENZING_APT_REPOSITORY_NAME} \ | ||
&& apt-get update \ | ||
&& rm /${SENZING_APT_REPOSITORY_NAME} | ||
|
||
# Install Senzing package. | ||
|
||
RUN apt-get -y install \ | ||
libpq5 \ | ||
${SENZING_APT_INSTALL_PACKAGE} \ | ||
jq \ | ||
&& apt-get clean | ||
libpq5 \ | ||
${SENZING_APT_INSTALL_PACKAGE} \ | ||
jq \ | ||
&& apt-get clean | ||
|
||
# Set environment variables for root. | ||
|
||
|