aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/Dockerfile
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2022-06-19 19:47:51 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2022-06-19 19:47:51 +0530
commit4fd287655a72b9aea14cdac715ad5b90ed082ed2 (patch)
tree65d393bc0e699dd12d05b29ba568e04cea666207 /circuitpython/Dockerfile
parent0150f70ce9c39e9e6dd878766c0620c85e47bed0 (diff)
add circuitpython code
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"]