build-iris-docker-image.sh
· 265 B · Bash
Bruto
#! /usr/bin/env bash
apt update
apt install -y git
git clone --depth=1 https://github.com/jaedb/Iris.git
cd Iris
vi docker/requirements.txt # remove extensions you don't want
docker login
docker buildx build --platform linux/arm64 -t curiouser/iris:latest --push .
| 1 | #! /usr/bin/env bash |
| 2 | |
| 3 | apt update |
| 4 | apt install -y git |
| 5 | git clone --depth=1 https://github.com/jaedb/Iris.git |
| 6 | cd Iris |
| 7 | vi docker/requirements.txt # remove extensions you don't want |
| 8 | docker login |
| 9 | docker buildx build --platform linux/arm64 -t curiouser/iris:latest --push . |