2018-06-09 09:58:58 +02:00
|
|
|
FROM ubuntu:xenial
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
curl \
|
|
|
|
python3 \
|
|
|
|
python3-pip \
|
|
|
|
python3-setuptools \
|
|
|
|
python3-pygments \
|
|
|
|
git \
|
|
|
|
make \
|
|
|
|
doxygen \
|
2018-08-27 13:21:30 +02:00
|
|
|
openssh-client \
|
2018-11-19 18:32:16 +01:00
|
|
|
software-properties-common \
|
|
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
|
|
|
|
RUN apt-add-repository ppa:inkscape.dev/stable && \
|
|
|
|
apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
inkscape \
|
2018-06-09 09:58:58 +02:00
|
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
|
|
|
|
RUN pip3 install --no-cache-dir --no-binary :all: \
|
|
|
|
sphinx \
|
|
|
|
breathe
|
|
|
|
|
|
|
|
EXPOSE 8000
|
|
|
|
WORKDIR /data/esphomedocs
|
|
|
|
|
|
|
|
CMD ["make", "webserver"]
|