Skip to content

ochafik/docker-openscad

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-openscad

This repository collects OpenSCAD related docker files. Some are meant for internal use in the OpenSCAD CI automation.

General use

For general use, please check the openscad/openscad images published and documented at Docker Hub.

CI support, for internal use

  • openscad/appimage-*
  • openscad/mxe-*
  • openscad/src-*

Debug Builds

Creating an image with debug symbols depends if the app is compiled with cmake or qmake. To enable debugging set BUILD_TYPTE="Debug" and DEBUG="+" in `scripts/build-imags.sh

Before

--build-arg BUILD_TYPE="Release" \
--build-arg DEBUG="-" \

After

--build-arg BUILD_TYPE="Debug" \
--build-arg DEBUG="+" \

Example to run gdb in a container

docker run --ulimit core=-1 -it -v $(pwd):/input openscad/openscad:2021.01-debug
apt update; apt install gdb -y
xvfb-run gdb --ex run --args openscad --info

About

OpenSCAD-related docker files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 77.9%
  • Shell 20.9%
  • Other 1.2%