forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-build.sh
executable file
·46 lines (37 loc) · 1.4 KB
/
docker-build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#! /bin/bash
#
# openscad-docker-build.sh -- a simple script to compile openscad using a docker container.
#
# (C) 2018 [email protected]
# Distribute under GPL-2.0 or ask.
test -d openscad || git clone --depth=50 --branch=master https://github.com/openscad/openscad.git openscad
(cd openscad; git submodule update --init --recursive)
mkdir -p docker
cat <<'EOF'> docker/Dockerfile
# openscad build env.
FROM ubuntu:16.04
RUN apt-get update -y; apt-get install -y git gcc
ENV CXX=g++
ENV CC=gcc
RUN $CC --version
RUN apt-get install -qq sudo; echo >> /etc/sudoers 'ALL ALL=(ALL) NOPASSWD: ALL'
EOF
if [ "$(md5sum docker/Dockerfile)" != "$(cat docker/Dockerfile.md5 2>/dev/null)" ]; then
docker build -t openscad-build docker
md5sum docker/Dockerfile > docker/Dockerfile.md5
fi
# Continue docker build outside the Dockerfile.
# This is needed, as docker build cannot have volumes and cannot react to changed github contents.
RUN()
{
rm -f docker/cid
docker run --cidfile docker/cid -v $PWD/openscad:/github/openscad -v /etc/passwd:/etc/passwd:ro --user $(stat -c "%u:%g" openscad) --workdir /github/openscad openscad-build "$@"
}
commit() { docker commit $(cat docker/cid) openscad-build; }
RUN sudo ./scripts/uni-get-dependencies.sh
commit
RUN bash -c ./scripts/check-dependencies.sh
RUN qmake openscad.pro
RUN make
ls -la openscad/openscad # should show the final binary...
RUN sudo checkinstall -D make install