mirror of
https://github.com/coopermaa/docker-ino.git
synced 2024-12-18 20:57:54 +00:00
15 lines
375 B
Docker
15 lines
375 B
Docker
FROM dockerfile/python
|
|
MAINTAINER coopermaa77@gmail.com
|
|
|
|
# arduino for Arduino IDE distribution
|
|
# picocom for serial communication
|
|
# ino is a command line toolkit for working with Arduino hardware
|
|
RUN apt-get update && \
|
|
apt-get install -y arduino picocom && \
|
|
pip install ino
|
|
|
|
WORKDIR /app
|
|
|
|
# Define entry point and default command.
|
|
ENTRYPOINT ["ino"]
|
|
CMD ["--help"] |