-
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.
- Loading branch information
Showing
14 changed files
with
134 additions
and
58 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: dependabot-approve-and-merge.yaml | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
dependabot-approve-and-merge: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
uses: Senzing/build-resources/.github/workflows/dependabot-approve-and-merge.yaml@main | ||
secrets: | ||
SENZING_GITHUB_CODEOWNER_PR_RW_TOKEN: ${{ secrets.SENZING_GITHUB_CODEOWNER_PR_RW_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: docker-build-container.yaml | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
docker-build-container: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: "0" | ||
- name: git config | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
- name: Git Update submodules | ||
run: git submodule update --init --recursive | ||
- name: Build Docker container | ||
run: make docker-build |
32 changes: 32 additions & 0 deletions
32
.github/workflows/docker-push-containers-to-dockerhub.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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: docker-push-containers-to-dockerhub.yaml | ||
|
||
on: | ||
push: | ||
tags: | ||
- "[0-9]+.[0-9]+.[0-9]+" | ||
|
||
jobs: | ||
docker-push-containers-to-dockerhub: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: "0" | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Docker list platforms | ||
run: docker buildx ls | ||
- name: Dockerhub login | ||
run: echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin | ||
- name: Docker build images | ||
run: | | ||
docker buildx build \ | ||
--no-cache \ | ||
--platform linux/amd64 \ | ||
--push \ | ||
--tag senzing/senzingapi-runtime:${{ github.ref_name }} \ | ||
--tag senzing/sengingapi-runtime:latest \ | ||
. |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: move-pr-to-done.yaml | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
move-pr-to-done: | ||
uses: Senzing/build-resources/.github/workflows/move-pr-to-done.yaml@main | ||
secrets: | ||
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }} |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
.DS_Store | ||
.history |
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 |
---|---|---|
|
@@ -3,19 +3,19 @@ ARG BASE_IMAGE=senzing/senzingapi-runtime:3.7.0 | |
# Create the runtime image. | ||
|
||
ARG SENZING_ACCEPT_EULA="I_ACCEPT_THE_SENZING_EULA" | ||
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE="senzingapi-tools=3.6.0-23160" | ||
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE="senzingapi-tools=3.7.0-23248" | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Stage: builder | ||
# ----------------------------------------------------------------------------- | ||
|
||
FROM ${BASE_IMAGE} AS builder | ||
|
||
ENV REFRESHED_AT=2023-09-25 | ||
ENV REFRESHED_AT=2023-09-27 | ||
|
||
LABEL Name="senzing/senzingapi-tools" \ | ||
Maintainer="[email protected]" \ | ||
Version="3.6.0" | ||
Version="3.7.0" | ||
|
||
# Run as "root" for system installation. | ||
|
||
|
@@ -52,7 +52,7 @@ RUN pip3 install --upgrade pip \ | |
|
||
FROM ${BASE_IMAGE} AS runner | ||
|
||
ENV REFRESHED_AT=2023-09-25 | ||
ENV REFRESHED_AT=2023-09-27 | ||
|
||
ARG SENZING_ACCEPT_EULA | ||
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE | ||
|
@@ -62,7 +62,7 @@ ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \ | |
|
||
LABEL Name="senzing/senzingapi-tools" \ | ||
Maintainer="[email protected]" \ | ||
Version="3.6.0" | ||
Version="3.7.0" | ||
|
||
# Run as "root" for system installation. | ||
|
||
|