Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#65 Prepare for versioned release #66

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.8.2] - 2024-01-19

### Changed in 3.8.2

- Updated Dockerfile FROM to `senzing/senzingapi-runtime:3.8.2`
- Updated to SENZING_APT_INSTALL_TOOLS_PACKAGE="senzingapi-tools=3.8.2-24011"

## [3.8.0] - 2023-11-14

### Changed in 3.8.0
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.8.0
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.8.2

# Create the runtime image.

ARG SENZING_ACCEPT_EULA="I_ACCEPT_THE_SENZING_EULA"
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE="senzingapi-tools=3.8.0-23303"
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE="senzingapi-tools=3.8.2-24011"

# -----------------------------------------------------------------------------
# Stage: builder
# -----------------------------------------------------------------------------

FROM ${BASE_IMAGE} AS builder

ENV REFRESHED_AT=2023-11-14
ENV REFRESHED_AT=2024-01-19

LABEL Name="senzing/senzingapi-tools" \
Maintainer="[email protected]" \
Version="3.8.0"
Version="3.8.2"

# Run as "root" for system installation.

Expand Down Expand Up @@ -52,7 +52,7 @@ RUN pip3 install --upgrade pip \

FROM ${BASE_IMAGE} AS runner

ENV REFRESHED_AT=2023-11-14
ENV REFRESHED_AT=2024-01-19

ARG SENZING_ACCEPT_EULA
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE
Expand All @@ -62,7 +62,7 @@ ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \

LABEL Name="senzing/senzingapi-tools" \
Maintainer="[email protected]" \
Version="3.8.0"
Version="3.8.2"

# Run as "root" for system installation.

Expand Down