We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 238c9c4 + 57d6ac4 commit 1a6eafbCopy full SHA for 1a6eafb
Dockerfile
@@ -18,6 +18,9 @@ RUN apt-get update && apt-get install -y \
18
libffi-dev \
19
python3-dev \
20
python3-libgpiod \
21
+ python3-distutils \
22
+ ### \
23
+ && pip install setuptools \
24
### clean up
25
&& apt-get -y autoremove \
26
&& apt-get clean \
@@ -39,10 +42,10 @@ RUN git clone -b master https://git.savannah.nongnu.org/git/simulavr.git \
39
42
# Build the firmware
40
43
&& cd klipper \
41
44
&& cp /usr/src/simulavr.config .config \
- && make PYTHON=python3 \
45
+ && make \
46
&& cp out/klipper.elf /build/simulavr.elf \
47
&& rm -f .config \
- && make PYTHON=python3 clean \
48
+ && make clean \
49
# Build simulavr
50
&& cd ../simulavr \
51
&& make python \
0 commit comments