diff --git a/CHANGELOG.md b/CHANGELOG.md index b946621..92a357b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [markdownlint](https://dlaa.me/markdownlint/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2023-04-04 + +### Changed in 1.0.2 + +- In `Dockerfile`, updated FROM instruction to `senzing/senzing-base:1.6.17` +- Migrate from `/opt/senzing/data/3.0.0` to `/opt/senzing/data/4.0.0` + ## [1.0.1] - 2022-09-29 ### Changed in 1.0.1 diff --git a/Dockerfile b/Dockerfile index 17572c2..eacd87f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -ARG BASE_IMAGE=senzing/senzing-base:1.6.15 +ARG BASE_IMAGE=senzing/senzing-base:1.6.17 FROM ${BASE_IMAGE} -ENV REFRESHED_AT=2023-01-12 +ENV REFRESHED_AT=2023-04-03 LABEL Name="senzing/docker-wrap-image-with-senzing-data" \ Maintainer="support@senzing.com" \ - Version="1.0.1" + Version="1.0.2" # SENZING_ACCEPT_EULA to be replaced by --build-arg @@ -39,7 +39,7 @@ RUN curl \ # Note: The system location for "data" should be /opt/senzing/data, hence the "mv" command. RUN apt -y install senzingapi \ - && mv /opt/senzing/data/3.0.0/* /opt/senzing/data/ \ + && mv /opt/senzing/data/4.0.0/* /opt/senzing/data/ \ && rm -rf /opt/senzing/g2 # Finally, make the container a non-root container again.