add openscad

Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
Jess Frazelle 2019-11-05 11:58:40 -08:00
parent f80a7e1fef
commit 6c5a7a45f0
No known key found for this signature in database
GPG Key ID: E34EC3D4E4953C4A

9
openscad/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:bullseye-slim
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
openscad \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "openscad" ]