Skip to content

Commit

Permalink
#83 Add warning (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Dec 6, 2024
1 parent d57c433 commit 0111d5c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ permissions:
jobs:
docker-push-containers-to-dockerhub-and-ecr:
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
secrets:
AWS_DOCKER_ACCOUNT_ID: ${{ secrets.AWS_DOCKER_ACCOUNT_ID }}
DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ There are a number of ways you can contribute:

If your contribution modifies the git repository, the following agreements must be established.

*Note:* License agreements are only needed for adding, modifying, and deleting artifacts kept within the repository.
_Note:_ License agreements are only needed for adding, modifying, and deleting artifacts kept within the repository.
In simple terms, license agreements are needed before pull requests can be accepted.
A license agreement is not needed for submitting feature request, bug reporting, or other project management.

Expand Down
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ USER root

RUN apt-get update \
&& apt-get -y install \
python3 \
python3-dev \
python3-pip \
python3-venv \
python3 \
python3-dev \
python3-pip \
python3-venv \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -54,11 +54,11 @@ ARG SENZING_ACCEPT_EULA
ARG SENZING_APT_INSTALL_TOOLS_PACKAGE

ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \
SENZING_APT_INSTALL_TOOLS_PACKAGE=${SENZING_APT_INSTALL_TOOLS_PACKAGE}
SENZING_APT_INSTALL_TOOLS_PACKAGE=${SENZING_APT_INSTALL_TOOLS_PACKAGE}

LABEL Name="senzing/senzingapi-tools" \
Maintainer="[email protected]" \
Version="3.12.0"
Maintainer="[email protected]" \
Version="3.12.0"

# Run as "root" for system installation.

Expand All @@ -79,7 +79,7 @@ HEALTHCHECK CMD apt list --installed | grep senzingapi-tools

RUN apt-get update \
&& apt-get -y install \
python3-venv \
python3-venv \
&& rm -rf /var/lib/apt/lists/*

# Copy python virtual environment from the builder image.
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# senzingapi-tools

## :warning: Warning

This repository is specifically for Senzing SDK V4.
It is not designed to work with Senzing API V3.

To find the Senzing API V3 version of this repository, visit [senzingsdk-tools].

## Synopsis

A Docker image with Senzingapi library and Senzing tools installed.
Expand Down Expand Up @@ -37,3 +44,4 @@ any use of this image complies with any relevant licenses for all software conta
[license information]: https://senzing.com/end-user-license-agreement/
[Senzing GitHub community]: https://github.com/Senzing/
[senzing/senzingapi-tools]: https://hub.docker.com/r/senzing/senzingapi-tools
[senzingsdk-tools]: https://github.com/Senzing/senzingsdk-tools
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# template-docker
# senzingapi-tools

Placeholder for [GitHub pages](https://pages.github.com/).

See [https://senzing.github.io/template-docker](https://senzing.github.io/template-docker).
See [https://senzing.github.io/senzingapi-tools](https://senzing.github.io/senzingapi-tools).

0 comments on commit 0111d5c

Please sign in to comment.