Update murmur

This commit is contained in:
asonix 2020-06-19 10:42:18 -05:00
parent bf8f46357a
commit 0881be7cae
3 changed files with 51 additions and 6 deletions

View file

@ -1,4 +1,4 @@
FROM arm64v8/alpine:3.11.2
FROM arm64v8/alpine:latest
ENV UID=991
ENV GID=991

View file

@ -1,5 +0,0 @@
FROM asonix/murmur:test
USER root
CMD ["/bin/sh"]

50
murmur/build.sh Executable file
View file

@ -0,0 +1,50 @@
#!/usr/bin/env bash
TAG=$1
function require() {
if [ "$1" = "" ]; then
echo "input '$2' required"
print_help
exit 1
fi
}
function print_help() {
echo "build.sh"
echo ""
echo "Usage:"
echo " build.sh [tag]"
echo ""
echo "Args:"
echo " tag: The tag of the built container"
}
function build_image() {
IMAGE=$1
ARCH=$2
docker build \
--pull \
--no-cache \
-f "Dockerfile.${ARCH}" \
-t "${IMAGE}:${TAG}-${ARCH}" \
-t "${IMAGE}:latest-${ARCH}" \
-t "${IMAGE}:latest" \
.
docker push "${IMAGE}:${TAG}-${ARCH}"
docker push "${IMAGE}:latest-${ARCH}"
docker push "${IMAGE}:latest"
}
require "$TAG" tag
if ! docker run --rm -it arm64v8/alpine:latest /bin/sh -c 'echo "docker is configured correctly"'; then
echo "docker is not configured to run on qemu-emulated architectures, fixing will require sudo"
sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
fi
set -xe
build_image asonix/murmur arm64v8