mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-04 09:10:02 +01:00
23 lines
501 B
Docker
23 lines
501 B
Docker
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 \
|
|
openssh-client \
|
|
software-properties-common \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
RUN pip3 install --no-cache-dir --no-binary :all: \
|
|
sphinx
|
|
|
|
EXPOSE 8000
|
|
WORKDIR /data/esphome-docs
|
|
|
|
CMD ["make", "webserver"]
|