rossvideo / Catena

BSD 3-Clause "New" or "Revised" License
6 stars 2 forks source link

Dockerfile for SDK build and execution added #117

Closed Mionsz closed 7 months ago

Mionsz commented 7 months ago

Dockerfile for SDK build and execution added.

To build the Dockerfile execute build_dockerfile.sh script. For customized registry, image name and tag use environment variables: (bellow with default value presented)

To push build container to Docker registry use above values composed in a full tag:

docker push "${IMAGE_REGISTRY}/${IMAGE_NAME:${IMAGE_TAG}"

To start docker container in interactive mode from your shell:

docker run -it --entrypoint="/bin/bash" "${IMAGE_REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG}"