docker-ino/Dockerfile

16 lines
369 B
Docker
Raw Permalink Normal View History

FROM python:2.7
2015-01-14 03:53:30 +00:00
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"]