-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github-util: Update FROM version (#266)
* #1 Update version * Added USER root * prepare for versioned release --------- Co-authored-by: docktermj <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.10.1 | ||
ARG BASE_BUILDER_IMAGE=senzing/base-image-debian:1.0.23 | ||
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.10.3 | ||
ARG BASE_BUILDER_IMAGE=senzing/base-image-debian:1.0.24 | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Stage: builder | ||
|
@@ -9,6 +9,10 @@ FROM ${BASE_BUILDER_IMAGE} as builder | |
|
||
ENV REFRESHED_AT=2024-06-24 | ||
|
||
# Run as "root" for system installation. | ||
|
||
USER root | ||
|
||
# Set environment variables. | ||
|
||
ENV SENZING_ROOT=/opt/senzing | ||
|
@@ -43,11 +47,11 @@ RUN export POC_API_SERVER_VERSION=$(mvn "help:evaluate" -Dexpression=project.ver | |
|
||
FROM ${BASE_IMAGE} | ||
|
||
ENV REFRESHED_AT=2024-05-22 | ||
ENV REFRESHED_AT=2024-06-24 | ||
|
||
LABEL Name="senzing/senzing-poc-server" \ | ||
Maintainer="[email protected]" \ | ||
Version="3.6.0" | ||
Version="3.6.1" | ||
|
||
HEALTHCHECK CMD ["/app/healthcheck.sh"] | ||
|
||
|