Add subuser files for developing freecad within a Docker container.

This commit is contained in:
Timothy Hobbs 2016-03-28 18:10:28 +02:00 committed by wmayer
parent 7f4a437cc2
commit 6135ec5e09
4 changed files with 27 additions and 0 deletions

1
.gitignore vendored
View File

@ -30,3 +30,4 @@ install_manifest.txt
/src/Tools/offlinedoc/localwiki/
/src/Tools/offlinedoc/todolist.txt
/src/Tools/offlinedoc/wikifiles.txt
.subuser-dev

1
.subuser.json Normal file
View File

@ -0,0 +1 @@
{"image-sources-dir": "./subuser"}

View File

@ -0,0 +1,14 @@
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install -yqq software-properties-common
RUN add-apt-repository ppa:freecad-maintainers/freecad-daily
RUN apt-get update
RUN apt-get install -yqq build-essential python python2.7-dev subversion cmake libtool autotools-dev automake bison flex gfortran git
RUN apt-get install -yqq libCoin80-dev libCoin80-doc libsoqt4-dev libqt4-dev qt4-dev-tools libsoqt4-dev python-qt4 libqtwebkit-dev
RUN apt-get install -yqq liboce-foundation-dev liboce-modeling-dev liboce-ocaf-dev liboce-visualization-dev oce-draw
RUN apt-get install -yqq libode-dev libeigen2-dev libeigen3-dev libsimage-dev libxerces-c2-dev
RUN apt-get install -yqq libpyside-dev pyside-tools libshiboken-dev doxygen python-pivy
RUN apt-get install -yqq libboost1.55-all-dev
RUN apt-get install -yqq libmedc-dev libvtk6-dev libproj-dev
RUN apt-get install -yqq libxerces-c-dev
RUN ln -s /usr/lib/x86_64-linux-gnu/libxerces-c.so /usr/lib/libxerces-c.so

View File

@ -0,0 +1,11 @@
{
"maintainer": "Timothy <timothyhobbs@seznam.cz>",
"stateful-home": true,
"executable": "/bin/bash",
"allow-network-access": true,
"basic-common-permissions": true,
"description": "A development environment for building and running freecad.",
"access-working-directory": true,
"graphics-card": true,
"gui": {"clipboard":true}
}