mirror of
https://github.com/Luzifer/3dmodels.git
synced 2024-12-23 10:51:19 +00:00
11 lines
171 B
Text
11 lines
171 B
Text
|
FROM node:10-alpine
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& apk --no-cache add \
|
||
|
build-base \
|
||
|
python \
|
||
|
&& npm install --global @jscad/cli
|
||
|
|
||
|
ENTRYPOINT ["openjscad"]
|
||
|
CMD ["--help"]
|