blob: 496706a8af3dc4dbc0d0e1fb5a1cf718546700e0 (
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 ["bash", "build.sh"]
|