You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
357 B
14 lines
357 B
#!/bin/bash
|
|
|
|
DISTRIB="$1"
|
|
TDE_VERSION="$2"
|
|
ARCH="$3"
|
|
|
|
[ -z "${TDE_VERSION}" ] && TDE_VERSION="14.0.5"
|
|
[ -z "${ARCH}" ] && ARCH="x86_64"
|
|
|
|
IMAGE="trinity.${DISTRIB}.${ARCH}:${TDE_VERSION}"
|
|
|
|
#docker rmi -f "${IMAGE}"
|
|
docker build -t "${IMAGE}" -f "${DISTRIB}/Dockerfile.${ARCH}" --build-arg TDE_VERSION="${TDE_VERSION}" --build-arg ARCH="${ARCH}" "${DISTRIB}"
|