blob: 127a3db0b07ee530762f853e3d85a9761b235858 (
plain)
1
2
3
4
5
6
7
8
9
10
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 [ "./build.sh" ]
|