Skip to content

Commit

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

* Add possibly-used-before-assignment

* prepare for versioned release

---------

Co-authored-by: Michael Dockter <michael@dockter.com>
  • Loading branch information
kernelsam and docktermj authored May 22, 2024
1 parent e715488 commit 6aa7b17
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ disable=
missing-function-docstring,
missing-module-docstring,
no-else-continue,
possibly-used-before-assignment,
protected-access,
redefined-outer-name,
too-many-branches,
Expand Down
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
22 changes: 11 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG BASE_IMAGE=debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df352d2b537cb96
ARG BASE_IMAGE=debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d
FROM ${BASE_IMAGE}

ENV REFRESHED_AT=2024-03-18
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 6aa7b17

Please sign in to comment.