13 lines
441 B
Bash
13 lines
441 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
IMAGE_NAME=robocar-pca9685-python
|
||
|
TAG=$(git describe)
|
||
|
FULL_IMAGE_NAME=docker.io/cyrilix/${IMAGE_NAME}:${TAG}
|
||
|
PLATFORM="linux/amd64,linux/arm64"
|
||
|
#PLATFORM="linux/amd64,linux/arm64,linux/arm/v7"
|
||
|
|
||
|
podman build . --platform "${PLATFORM}" --manifest "${IMAGE_NAME}:${TAG}"
|
||
|
podman manifest push --format v2s2 "localhost/${IMAGE_NAME}:${TAG}" "docker://${FULL_IMAGE_NAME}"
|
||
|
|
||
|
printf "\nImage %s published" "docker://${FULL_IMAGE_NAME}"
|