blueprints.git

ref: master

./test


#!/bin/sh

if [ -z "$1" ]; then
  echo 'usage: test '
  exit 1
fi

set -e
set -x

cd "$1"
touch ssh_key
touch known_hosts
touch android.jks
touch keystore_pass
touch key_pass
podman build -t "toy_$1" .
podman run --rm -it -e ENVIRONMENT=local "toy_$1"