docker-ino/Dockerfile
Alexander Morozov 9cf845eb70 Use official python:2.7 image as base
dockerfiles/ repository was removed from hub.docker.com

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
2015-07-13 19:54:04 -07:00

16 lines
369 B
Docker

FROM python:2.7
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"]