forked from sig_core/toolkit
Neil Hanlon
76dba70458
* Build this into a container to deploy * Add lorax packages in * Build container from public source * Switch to different c9s mirror due to errors * add script for building
15 lines
302 B
Bash
15 lines
302 B
Bash
#!/bin/bash
|
|
|
|
MANIFEST_NAME="peridotempanadas"
|
|
BUILD_PATH="."
|
|
REGISTRY="docker.io"
|
|
USER="neilresf"
|
|
IMAGE_TAG="v0.1.0"
|
|
IMAGE_NAME="peridotempanadas"
|
|
|
|
podman buildx build \
|
|
--platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le \
|
|
--tag "${REGISTRY}/${USER}/${IMAGE_NAME}:${IMAGE_TAG}" \
|
|
$PWD
|
|
|