akkoma-build/build.sh

33 lines
734 B
Bash
Raw Normal View History

2023-07-23 03:49:40 +00:00
#!/bin/bash
set -Eeuxo pipefail
LOCAL_COMMIT="$(git rev-parse HEAD)"
AKKOMA_FINAL_IMAGE="registry.nrd.li/nrdli/akkoma:${LOCAL_COMMIT}"
2023-07-23 03:49:40 +00:00
2023-07-23 18:20:16 +00:00
# clone akkoma source code
if [ -d akkoma ]; then
rm -rf akkoma
fi
git clone https://git.keganmyers.com/nrd.li/akkoma.git akkoma
2023-07-23 08:17:35 +00:00
pushd akkoma
git checkout stable
git pull
AKKOMA_COMMIT="$(git rev-parse HEAD)"
AKKOMA_BASE_IMAGE="registry.nrd.li/nrdli/akkoma-base:${AKKOMA_COMMIT}"
2023-07-23 18:20:16 +00:00
# build and store base image
2023-07-23 03:49:40 +00:00
docker build \
-t "${AKKOMA_BASE_IMAGE}" \
.
docker push "${AKKOMA_BASE_IMAGE}"
popd
2023-07-23 03:49:40 +00:00
chown -R 1000:1000 ./akkoma
2023-07-23 18:20:16 +00:00
# run install steps for akkoma
docker build \
-t "${AKKOMA_FINAL_IMAGE}" \
--build-arg "AKKOMA_COMMIT=${AKKOMA_COMMIT}" \
.
docker push "${AKKOMA_FINAL_IMAGE}"