mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-05 00:21:29 +00:00
2d63591ab8
This should get us a current version of Qt and many other newer libraries. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
18 lines
419 B
Bash
18 lines
419 B
Bash
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
# known good MXE sha
|
|
MXE_SHA="0d21cf2e31d4e6c0"
|
|
SCRIPTPATH=$(dirname $0)
|
|
|
|
# version of the docker image
|
|
VERSION=3.0.1
|
|
|
|
pushd $SCRIPTPATH
|
|
|
|
# we use the 'experimental' --squash argument to significantly reduce the size of the massively huge
|
|
# Docker container this produces
|
|
docker build -t subsurface/mxe-build-container:$VERSION --build-arg=mxe_sha=$MXE_SHA -f Dockerfile .
|
|
docker images
|
|
popd
|