15 lines
386 B
Bash
Raw Normal View History

2022-01-12 09:23:42 +01:00
#!/bin/bash
2023-01-31 12:26:05 +05:00
if [[ -z "${INDEX_VERSION}" ]]; then
echo "Please set INDEX_VERSION env variable"
2022-01-12 09:23:42 +01:00
exit 1
fi
2023-01-31 12:26:05 +05:00
cp /storage/images/android/x64/$INDEX_VERSION/bromite.idx .
cp /storage/images/android/x64/$INDEX_VERSION/RELEASE
2022-01-12 09:23:42 +01:00
DOCKER_BUILDKIT=1 docker build -t uazo/bromite-remote-index:$INDEX_VERSION \
--progress plain \
--no-cache \
.