-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #264 Update dependencies * #264 Migrage from g2 to sz/er * #264 Normalize to template * #264 Improve documentation * #264 Improve documentation * #264 Improve documentation * #264 Improve documentation * #264 Prepare for versioned release * Force re-test
- Loading branch information
Showing
36 changed files
with
401 additions
and
402 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
2 changes: 1 addition & 1 deletion
2
.github/workflows/docker-push-containers-to-dockerhub-and-ecr.yaml
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,4 +1,4 @@ | ||
name: docker push containers to dockerhub and ecr | ||
name: Docker push containers to dockerhub and ecr | ||
|
||
on: | ||
push: | ||
|
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
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
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 |
---|---|---|
|
@@ -9,13 +9,13 @@ ARG IMAGE_FINAL=senzing/senzingapi-runtime-staging:latest | |
# Stage: senzingapi_runtime | ||
# ----------------------------------------------------------------------------- | ||
|
||
FROM ${IMAGE_FINAL} as senzingapi_runtime | ||
FROM ${IMAGE_FINAL} AS senzingapi_runtime | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Stage: builder | ||
# ----------------------------------------------------------------------------- | ||
|
||
FROM ${IMAGE_BUILDER} as builder | ||
FROM ${IMAGE_BUILDER} AS builder | ||
ENV REFRESHED_AT=2024-07-01 | ||
LABEL Name="senzing/go-builder" \ | ||
Maintainer="[email protected]" \ | ||
|
@@ -32,12 +32,12 @@ COPY . ${GOPATH}/src/init-database | |
|
||
# Copy files from prior stage. | ||
|
||
COPY --from=senzingapi_runtime "/opt/senzing/g2/lib/" "/opt/senzing/g2/lib/" | ||
COPY --from=senzingapi_runtime "/opt/senzing/g2/sdk/c/" "/opt/senzing/g2/sdk/c/" | ||
COPY --from=senzingapi_runtime "/opt/senzing/er/lib/" "/opt/senzing/er/lib/" | ||
COPY --from=senzingapi_runtime "/opt/senzing/er/sdk/c/" "/opt/senzing/er/sdk/c/" | ||
|
||
# Set path to Senzing libs. | ||
|
||
ENV LD_LIBRARY_PATH=/opt/senzing/g2/lib/ | ||
ENV LD_LIBRARY_PATH=/opt/senzing/er/lib/ | ||
|
||
# Build go program. | ||
|
||
|
@@ -53,7 +53,7 @@ RUN mkdir -p /output \ | |
# Stage: final | ||
# ----------------------------------------------------------------------------- | ||
|
||
FROM ${IMAGE_FINAL} as final | ||
FROM ${IMAGE_FINAL} AS final | ||
ENV REFRESHED_AT=2024-07-01 | ||
LABEL Name="senzing/init-database" \ | ||
Maintainer="[email protected]" \ | ||
|
@@ -77,7 +77,7 @@ USER 1001 | |
|
||
# Runtime environment variables. | ||
|
||
ENV LD_LIBRARY_PATH=/opt/senzing/g2/lib/ | ||
ENV LD_LIBRARY_PATH=/opt/senzing/er/lib/ | ||
|
||
# Runtime execution. | ||
|
||
|
Oops, something went wrong.