esphome-docs/Dockerfile

19 lines
406 B
Docker
Raw Normal View History

FROM python:slim
2018-06-09 09:58:58 +02:00
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
git \
make \
doxygen \
2018-08-27 13:21:30 +02:00
openssh-client \
software-properties-common \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
2018-06-09 09:58:58 +02:00
RUN pip3 install --no-cache-dir --no-binary :all: \
2019-02-15 13:15:42 +01:00
sphinx
2018-06-09 09:58:58 +02:00
EXPOSE 8000
WORKDIR /data/esphomedocs
2018-06-09 09:58:58 +02:00
CMD ["make", "webserver"]