Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-debugging-tools/bin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
cd "$(dirname "$0")/.."

source bin/env
docker buildx build --push --platform linux/arm64,linux/amd64 -t "${DOCKER_IMAGE}" .
docker buildx build --push --platform linux/arm64,linux/amd64 -t "${DOCKER_SSH_IMAGE}" -f Dockerfile-sshd .
docker buildx build --push --platform linux/arm64,linux/amd64 -t "${DOCKER_IMAGE}" -t "${DOCKER_IMAGE_LATEST}" .
docker buildx build --push --platform linux/arm64,linux/amd64 -t "${DOCKER_SSH_IMAGE}" -t "${DOCKER_SSH_IMAGE_LATEST}" -f Dockerfile-sshd .
2 changes: 2 additions & 0 deletions docker-debugging-tools/bin/env
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ export DOCKER_TAG=${DOCKER_TAG:-"${GIT_BRANCH}-${GIT_HASH}"}
export DOCKER_TAG=${DOCKER_TAG/\//-}

export DOCKER_IMAGE="${DOCKER_REGISTRY}/debugging-tools:${DOCKER_TAG}"
export DOCKER_IMAGE_LATEST="${DOCKER_REGISTRY}/debugging-tools:latest"
export DOCKER_SSH_IMAGE="${DOCKER_REGISTRY}/debugging-tools-sshd:${DOCKER_TAG}"
export DOCKER_SSH_IMAGE_LATEST="${DOCKER_REGISTRY}/debugging-tools-sshd:latest"