Skip to content

Commit

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

* prepare for versioned release

* Add USER root for interstitial stage

---------

Co-authored-by: docktermj <michael@dockter.com>
  • Loading branch information
kernelsam and docktermj authored Jun 25, 2024
1 parent 3e33dbc commit 24e5095
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [1.4.17] - 2024-06-24

### Changed in 1.4.17

- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-tools:3.10.3`
- In `requirements.txt`, updated:
- orjson==3.10.5
- python-socketio==5.11.3
- setuptools==70.1.0

## [1.4.16] - 2024-05-22

### Changed in 1.4.16
Expand Down
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG BASE_IMAGE=senzing/senzingapi-tools:3.10.1
ARG BASE_IMAGE=senzing/senzingapi-tools:3.10.3
ARG BASE_BUILDER_IMAGE=node:lts-buster-slim

ARG IMAGE_NAME="senzing/xterm"
ARG IMAGE_MAINTAINER="support@senzing.com"
ARG IMAGE_VERSION="1.4.16"
ARG IMAGE_VERSION="1.4.17"

# -----------------------------------------------------------------------------
# Stage: builder
Expand All @@ -13,7 +13,7 @@ FROM ${BASE_BUILDER_IMAGE} AS builder

# Set Shell to use for RUN commands in builder step.

ENV REFRESHED_AT=2024-05-22
ENV REFRESHED_AT=2024-06-24

# Run as "root" for system installation.

Expand Down Expand Up @@ -72,6 +72,10 @@ RUN mkdir /tmp/fio \

FROM ${BASE_IMAGE} AS python

# Run as "root" for system installation.

USER root

# Install packages via apt.

ENV DEBIAN_FRONTEND noninteractive
Expand Down Expand Up @@ -102,7 +106,7 @@ RUN pip3 install --upgrade pip \

FROM ${BASE_IMAGE} AS runner

ENV REFRESHED_AT=2024-05-22
ENV REFRESHED_AT=2024-06-24

ARG IMAGE_NAME
ARG IMAGE_MAINTAINER
Expand Down

0 comments on commit 24e5095

Please sign in to comment.