Skip to content

Instantly share code, notes, and snippets.

@emka
emka / Dockerfile
Last active November 14, 2021 21:14
CNCjs Docker image for Raspberry Pi
FROM --platform=linux/arm/v7 debian:stable-slim
RUN apt-get update && \
apt-get install -y nodejs npm git
RUN git clone https://github.com/comakingspace/cncjs
WORKDIR cncjs
RUN npm install --build-from-source --legacy-peer-deps
CMD bin/cnc