blob: 5cbb6c6fac291c8c11ec6b7e67b16037accc496e (
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", "sleep.sh"]
|