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.
0 parents commit b6607b7Copy full SHA for b6607b7
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM debian:buster-slim
2
+
3
+RUN apt-get update \
4
+ && DEBIAN_FRONTEND=noninteractive apt-get install -y \
5
+ curl git \
6
+ build-essential cmake ninja-build clang gcc-arm-none-eabi srecord \
7
+ python3 python3-dev \
8
+ python3-pip python3-setuptools python3-usb \
9
+ libffi-dev libssl-dev libxml2-dev \
10
+ && rm -rf /var/lib/apt/lists/*
11
12
+RUN pip3 install -U yotta
13
14
+RUN mkdir /yotta
15
+WORKDIR /yotta
0 commit comments