Skip to content

Commit

Permalink
prepare for versioned release
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam committed May 22, 2024
1 parent 429a9e9 commit 652f2ae
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ 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.1.7] - 2024-05-22

### Changed in 1.1.7

- In `Dockerfile`, updated FROM instruction to `debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d`
- In `requirements.txt`, updated:
- boto3==1.34.110
- confluent_kafka==2.4.0

## [1.1.6] - 2023-09-30

### Changed in 1.1.6
Expand Down
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FROM ${BASE_IMAGE}
ENV REFRESHED_AT=2024-05-22

LABEL Name="senzing/stream-logger" \
Maintainer="support@senzing.com" \
Version="1.1.6"
Maintainer="support@senzing.com" \
Version="1.1.7"

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

Expand All @@ -16,18 +16,18 @@ USER root
# Install packages via apt.

RUN apt update \
&& apt -y install \
python3-dev \
python3-pip \
librdkafka-dev \
&& rm -rf /var/lib/apt/lists/*
&& apt -y install \
python3-dev \
python3-pip \
librdkafka-dev \
&& rm -rf /var/lib/apt/lists/*

# Install packages via PIP.

COPY requirements.txt .
RUN pip3 install --upgrade pip \
&& pip3 install -r requirements.txt \
&& rm /requirements.txt
&& pip3 install -r requirements.txt \
&& rm /requirements.txt

# Copy files from repository.

Expand Down

0 comments on commit 652f2ae

Please sign in to comment.