summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..62b9af6
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,15 @@
+FROM alpine:3.17.0
+
+# Install toolchain
+RUN apk update && \
+ apk upgrade && \
+ apk add git \
+ python3 \
+ py3-pip \
+ cmake \
+ build-base \
+ libusb-dev \
+ bsd-compat-headers \
+ newlib-arm-none-eabi \
+ gcc-arm-none-eabi \
+ valgrind \ No newline at end of file