mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
12 lines
401 B
Bash
Executable File
12 lines
401 B
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
CONTAINER=$1
|
|
CONTAINER="${CONTAINER:-gitlabci}"
|
|
|
|
podman login registry.salsa.debian.org
|
|
|
|
# Build and upload a new image to the container registry
|
|
podman build -t registry.salsa.debian.org/freedombox-team/freedombox:${CONTAINER} -f .ci/Containerfile.${CONTAINER} .
|
|
podman push registry.salsa.debian.org/freedombox-team/freedombox:${CONTAINER}
|