subsurface/scripts/docker/mxe-build-container/build-container.sh
Dirk Hohndel 24bf9540cc WIP: single stage Docker build for 64bit MXE
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2020-10-28 14:33:02 -07:00

14 lines
259 B
Bash

#!/bin/bash
set -x
set -e
# known good MXE sha
MXE_SHA="8966a64"
SCRIPTPATH=$(dirname $0)
# version of the docker image
VERSION=2.0
pushd $SCRIPTPATH
docker build -t subsurface/mxe-build-container:$VERSION --build-arg=mxe_sha=$MXE_SHA -f Dockerfile .
popd