blob: 8e115cc08004aa249e6610da45f849eb9f48ed80 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|