* Made service commands available through frontend * image fix, grammar fix * fixed suggestions bug, some cleanup from old editor, svg edge case * FIX: save a file with special characters * DOCU: new community theme, multi cam setup * FIX: docker systemctl workaround * fixed systemctl problem, added delay for simulavr * chore, removed unused stuff * bump * fixed olds paths and changed base image for faster builds
66 lines
2.2 KiB
Docker
66 lines
2.2 KiB
Docker
FROM python:3-slim-buster AS base
|
|
|
|
RUN groupadd --force -g 1000 node
|
|
RUN useradd -ms /bin/bash --no-user-group -g 1000 -u 1000 node
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y sudo wget cmake swig git virtualenv python-dev libffi-dev \
|
|
build-essential libncurses-dev libusb-dev avrdude gcc-avr binutils-avr avr-libc \
|
|
dfu-util libnewlib-arm-none-eabi gcc-arm-none-eabi binutils-arm-none-eabi libusb-1.0
|
|
RUN mkdir /src
|
|
WORKDIR /src
|
|
RUN wget http://download.savannah.nongnu.org/releases/simulavr/libsim_1.1.0_amd64.deb
|
|
RUN apt install /src/libsim_1.1.0_amd64.deb
|
|
|
|
RUN cat /etc/passwd
|
|
|
|
RUN echo 'node ALL=(ALL:ALL) NOPASSWD: ALL' > /etc/sudoers.d/node && \
|
|
chown node:node -R ./
|
|
#if systemd is installed, we need to backup the current systemctl command
|
|
#RUN mv /bin/systemctl /bin/systemctl.bak
|
|
RUN ln -s /bin/true /bin/systemctl
|
|
|
|
USER node
|
|
|
|
WORKDIR /home/node
|
|
RUN git clone https://github.com/klipper3d/klipper
|
|
WORKDIR /home/node/klipper
|
|
COPY api/simulavr.config /home/node/klipper/.config
|
|
RUN make
|
|
RUN cp /home/node/klipper/out/klipper.elf /home/node/klipper/simulavr.elf
|
|
RUN rm /home/node/klipper/.config
|
|
COPY api/linux.config /home/node/klipper/.config
|
|
RUN make clean
|
|
RUN make
|
|
RUN chmod +x /home/node/klipper/scripts/install-debian.sh
|
|
RUN /home/node/klipper/scripts/install-debian.sh
|
|
|
|
WORKDIR /home/node
|
|
RUN git clone https://github.com/Arksine/moonraker
|
|
WORKDIR /home/node/moonraker
|
|
RUN sed -E 's/check_klipper\(\)/check_klipper() { return 0; }\nold()/' /home/node/moonraker/scripts/install-moonraker.sh > /home/node/moonraker/scripts/install-moonraker2.sh
|
|
RUN chmod +x /home/node/moonraker/scripts/install-moonraker2.sh
|
|
RUN /home/node/moonraker/scripts/install-moonraker2.sh
|
|
|
|
#restore backed up systemctl command
|
|
#RUN sudo mv /bin/systemctl.bak /bin/systemctl
|
|
|
|
WORKDIR /home/node/
|
|
RUN git clone https://git.savannah.nongnu.org/git/simulavr.git
|
|
WORKDIR /home/node/simulavr
|
|
RUN make python
|
|
RUN make build -j8
|
|
|
|
USER root
|
|
RUN rm /bin/systemctl
|
|
|
|
RUN apt-get -y install supervisor
|
|
|
|
RUN ln -s /usr/bin/supervisorctl /bin/systemctl
|
|
|
|
RUN mkdir -p /var/log/supervisor
|
|
COPY api/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
COPY api/start-api /bin/start-api
|
|
RUN chmod +x /bin/start-api
|
|
ENTRYPOINT ["/bin/start-api"]
|