Skip to content

Commit

Permalink
github-util: Update FROM version (#30)
Browse files Browse the repository at this point in the history
* #1 Update version

* Prepare for versioned release
  • Loading branch information
docktermj authored Apr 4, 2023
1 parent a90e453 commit f2c699b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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="[email protected]" \
Version="1.0.1"
Version="1.0.2"

# SENZING_ACCEPT_EULA to be replaced by --build-arg

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit f2c699b

Please sign in to comment.