pyircbot/docs/builder/Dockerfile

17 lines
390 B
Docker
Raw Normal View History

2019-02-11 12:01:35 -08:00
FROM ubuntu:bionic
2015-06-19 18:26:03 -07:00
2019-02-11 12:01:35 -08:00
RUN apt-get update && \
export DEBIAN_FRONTEND=noninteractive && \
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
2019-02-11 12:01:35 -08:00
COPY ./docs/builder/start /start
COPY ./ /tmp/pyircbot/
2017-03-28 16:48:31 -07:00
2019-02-11 12:01:35 -08:00
RUN cd /tmp/pyircbot/ && pip3 install -r requirements-test.txt
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"]