Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

github-util: Update FROM version #76

Merged
merged 2 commits into from
Oct 11, 2022
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ 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).

## [0.2.1] - 2022-10-11

### Changed in 0.2.1

- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-tools:3.3.1`

## [0.2.0] - 2022-10-05

### Changed in 0.2.0
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.3.0
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.3.1
ARG BASE_BUILDER_IMAGE=senzing/base-image-debian:1.0.10

# -----------------------------------------------------------------------------
Expand All @@ -7,11 +7,11 @@ ARG BASE_BUILDER_IMAGE=senzing/base-image-debian:1.0.10

FROM ${BASE_BUILDER_IMAGE} as builder

ENV REFRESHED_AT=2022-09-27
ENV REFRESHED_AT=2022-10-11

LABEL Name="senzing/connector-neo4j-builder" \
Maintainer="[email protected]" \
Version="0.2.0"
Version="0.2.1"

# Set environment variables.

Expand All @@ -36,11 +36,11 @@ RUN export CONNECTOR_NEO4J_JAR_VERSION=$(mvn "help:evaluate" -Dexpression=projec

FROM ${BASE_IMAGE}

ENV REFRESHED_AT=2022-09-27
ENV REFRESHED_AT=2022-10-11

LABEL Name="senzing/connector-neo4j" \
Maintainer="[email protected]" \
Version="0.2.0"
Version="0.2.1"

HEALTHCHECK CMD ["/app/healthcheck.sh"]

Expand Down