Skip to content

Commit a53b947

Browse files
committed
#382 Savepoint
1 parent e5b8f42 commit a53b947

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

docs/how-to-build-docker-image.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# How to build Docker image
2+
3+
## Senzing V4 Beta instructions
4+
5+
1. Email [[email protected]] to request participation in Senzing V4 Beta.
6+
1. Once you are signed up, you’ll get an email with a [URL for a Debian-based installation].
7+
You’ll use values this URL to create environment variables.
8+
1. The first part of the URL, up to the final forward-slash,
9+
is the SENZING_APT_REPOSITORY_URL value.
10+
It starts with `https://senzing-` and ends with `.com`.
11+
It needs to be the value of the `SENZING_APT_REPOSITORY_URL` environment variable.
12+
Example:
13+
14+
```console
15+
export SENZING_APT_REPOSITORY_URL="https://senzing-xxxxxxxx.com"
16+
```
17+
18+
1. The second part of the URL, everything after the final forward-slash,
19+
is the SENZING_APT_REPOSITORY_NAME value.
20+
It starts with `senzing` and ends with `.deb`.
21+
It needs to be the value of the `SENZING_APT_REPOSITORY_NAME` environment variable.
22+
23+
Example:
24+
25+
```console
26+
export SENZING_APT_REPOSITORY_NAME="senzingxxxx-xxxxxxxx.deb"
27+
```
28+
29+
1. Build the first Docker image which contains the Senzing binaries.
30+
31+
```console
32+
docker build --build-arg SENZING_APT_REPOSITORY_NAME --build-arg SENZING_APT_REPOSITORY_URL --tag senzing/senzingsdk-runtime-beta:latest https://github.com/senzing/senzingsdk-runtime.git#main
33+
```
34+
35+
1. Build the second Docker image which adds the gRPC server to the Senzing binaries.
36+
37+
```console
38+
docker build --tag senzing/serve-grpc:latest https://github.com/senzing-garage/serve-grpc.git#main
39+
```
40+
41+
42+
[URL for a Debian-based installation]: ./response-email.png

docs/response-email.png

327 KB
Loading

0 commit comments

Comments
 (0)