Skip to content

Commit b6607b7

Browse files
committed
Dockerfile: install yotta
0 parents  commit b6607b7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)