subsurface/scripts/docker/mxe-build-container/build-container.sh

18 lines
412 B
Bash
Raw Normal View History

#!/bin/bash
set -x
set -e
# known good MXE sha
MXE_SHA="0d21cf2e31d4e6c0"
SCRIPTPATH=$(dirname $0)
# version of the docker image
VERSION=3.0
pushd $SCRIPTPATH
# we use the 'experimental' --squash argument to significantly reduce the size of the massively huge
# Docker container this produces
docker build --squash -t subsurface/mxe-build-container:$VERSION --build-arg=mxe_sha=$MXE_SHA -f Dockerfile .
popd