Skip to content

Commit

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

* Prepare for versioned release
  • Loading branch information
docktermj authored Apr 3, 2023
1 parent beaf96c commit 7a03806
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
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).

## [1.0.5] - 2023-04-03

### Changed in 1.0.5

- In `Dockerfile`, updated FROM instruction to `debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1`

## [1.0.4] - 2022-09-29

### Changed in 1.0.4
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
ARG BASE_IMAGE=debian:11.6-slim@sha256:98d3b4b0cee264301eb1354e0b549323af2d0633e1c43375d0b25c01826b6790
ARG BASE_IMAGE=debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1

# -----------------------------------------------------------------------------
# Stage: db2_builder
# -----------------------------------------------------------------------------

FROM ${BASE_IMAGE} as db2_builder

ENV REFRESHED_AT=2023-01-12
ENV REFRESHED_AT=2023-04-03

LABEL Name="senzing/senzing-db2-builder" \
Version="1.0.4"
Version="1.0.5"

# Install packages via apt.

Expand All @@ -31,14 +31,14 @@ RUN unzip -d /tmp/extracted-jdbc /tmp/db2-jdbc-sqlj/jdbc_sqlj/db2_db2driver_for_
# Final stage
# -----------------------------------------------------------------------------

ARG BASE_IMAGE=debian:11.6-slim@sha256:98d3b4b0cee264301eb1354e0b549323af2d0633e1c43375d0b25c01826b6790
ARG BASE_IMAGE=debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1
FROM ${BASE_IMAGE}

ENV REFRESHED_AT=2023-01-12
ENV REFRESHED_AT=2023-04-03

LABEL Name="senzing/db2-driver-installer" \
Maintainer="support@senzing.com" \
Version="1.0.4"
Version="1.0.5"

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

Expand Down
4 changes: 2 additions & 2 deletions db2-driver-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import zipfile

__all__ = []
__version__ = "1.0.4" # See https://www.python.org/dev/peps/pep-0396/
__version__ = "1.0.5" # See https://www.python.org/dev/peps/pep-0396/
__date__ = '2019-08-06'
__updated__ = '2022-09-29'
__updated__ = '2023-04-03'

SENZING_PRODUCT_ID = "5008" # See https://github.com/Senzing/knowledge-base/blob/main/lists/senzing-product-ids.md
log_format = '%(asctime)s %(message)s'
Expand Down

0 comments on commit 7a03806

Please sign in to comment.