Skip to content

Commit

Permalink
#298 Added libodbc1 (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored May 6, 2022
1 parent 135b336 commit 4aa4a48
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 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.10.3] - 2022-05-06

### Changed in 1.10.3

- Added `libodbc1` to Dockerfile

## [1.10.2] - 2022-05-05

### Changed in 1.10.2
Expand Down
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ ARG BASE_IMAGE=debian:11.3-slim@sha256:78fd65998de7a59a001d792fe2d3a6d2ea25b6f3f

FROM ${BASE_IMAGE} AS builder

ENV REFRESHED_AT=2022-05-05
ENV REFRESHED_AT=2022-05-06

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="1.10.2"
Version="1.10.3"

# Run as "root" for system installation.

Expand Down Expand Up @@ -48,11 +48,11 @@ RUN pip3 install --upgrade pip \

FROM ${BASE_IMAGE} AS runner

ENV REFRESHED_AT=2022-05-05
ENV REFRESHED_AT=2022-05-06

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="1.10.2"
Version="1.10.3"

# Define health check.

Expand All @@ -67,6 +67,7 @@ USER root
RUN apt-get update \
&& apt-get -y install \
libaio1 \
libodbc1 \
librdkafka-dev \
libssl1.1 \
libxml2 \
Expand Down
9 changes: 5 additions & 4 deletions Dockerfile-with-data
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ ARG BASE_IMAGE=debian:11.3-slim@sha256:78fd65998de7a59a001d792fe2d3a6d2ea25b6f3f

FROM ${BASE_IMAGE} AS builder

ENV REFRESHED_AT=2022-05-05
ENV REFRESHED_AT=2022-05-06
ARG SENZING_ACCEPT_EULA=no
ARG SENZING_APT_REPOSITORY_URL=https://senzing-production-apt.s3.amazonaws.com/senzingrepo_1.0.0-1_amd64.deb
ARG SENZING_DATA_PACKAGE_NAME=senzingdata-v3
ARG SENZING_DATA_SUBDIRECTORY=3.0.0

LABEL Name="senzing/stream-loader-builder-with-data" \
Maintainer="support@senzing.com" \
Version="1.10.2"
Version="1.10.3"

# Run as "root" for system installation.

Expand Down Expand Up @@ -76,11 +76,11 @@ RUN pip3 install --upgrade pip \

FROM ${BASE_IMAGE} AS runner

ENV REFRESHED_AT=2022-05-05
ENV REFRESHED_AT=2022-05-06

LABEL Name="senzing/stream-loader-with-data" \
Maintainer="support@senzing.com" \
Version="1.10.2"
Version="1.10.3"

# Define health check.

Expand All @@ -95,6 +95,7 @@ USER root
RUN apt-get update \
&& apt-get -y install \
libaio1 \
libodbc1 \
librdkafka-dev \
libssl1.1 \
libxml2 \
Expand Down
4 changes: 2 additions & 2 deletions stream-loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
# Metadata

__all__ = []
__version__ = "1.10.2" # See https://www.python.org/dev/peps/pep-0396/
__version__ = "1.10.3" # See https://www.python.org/dev/peps/pep-0396/
__date__ = '2018-10-29'
__updated__ = '2022-05-05'
__updated__ = '2022-05-06'

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

0 comments on commit 4aa4a48

Please sign in to comment.