aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'circuitpython/Dockerfile')
-rw-r--r--circuitpython/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/circuitpython/Dockerfile b/circuitpython/Dockerfile
new file mode 100644
index 0000000..496706a
--- /dev/null
+++ b/circuitpython/Dockerfile
@@ -0,0 +1,11 @@
+FROM ubuntu:latest
+
+COPY . /circuitpython
+WORKDIR /circuitpython
+
+RUN apt-get update
+RUN apt-get install python3 python3-pip git gettext build-essential mtools gcc-arm-none-eabi -y
+RUN pip3 install --upgrade -r requirements-dev.txt
+RUN make -C mpy-cross
+
+# ENTRYPOINT ["bash", "build.sh"]