pyircbot/docs/builder/Dockerfile

16 lines
334 B
Docker
Raw Normal View History

2017-09-21 21:09:35 -07:00
FROM ubuntu:artful
2015-06-19 18:26:03 -07:00
ADD ./ /tmp/pyircbot/
2017-03-28 16:48:31 -07:00
RUN apt-get update ; \
apt-get install -y python3 python3-sphinx python3-setuptools python3-dev python3-pip make wget unzip git
2017-03-28 16:48:31 -07:00
RUN cd /tmp/pyircbot/ && pip3 install -r requirements.txt
2017-03-28 16:48:31 -07:00
COPY docs/builder/start /start
2017-03-28 16:48:31 -07:00
RUN chmod +x /start ; \
2015-08-08 16:29:23 -07:00
mkdir /tmp/docs
2015-06-19 18:26:03 -07:00
2017-03-28 16:48:31 -07:00
ENTRYPOINT ["/start"]