mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-13 10:34:02 +01:00
0b889e396b
* Make search results appear in a fixed window; Make search text clickable; Improve search layout on mobile. * On window resize, adjust layout * Maybe make Firefox not resize. * Tweak initial- and maximum-scale * Make live-html work with pagefind; Make pagefind work in docker * Lint * Fix netlify deploy * Remove debug code
48 lines
1.5 KiB
Docker
48 lines
1.5 KiB
Docker
FROM python:3.12-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
git \
|
|
make \
|
|
doxygen \
|
|
openssh-client \
|
|
software-properties-common \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
ENV PAGEFIND_VERSION="1.1.0"
|
|
ARG TARGETARCH
|
|
SHELL ["/bin/bash", "-c"]
|
|
RUN <<EOF
|
|
export TARGETARCH=${TARGETARCH/arm64/aarch64}
|
|
export TARGETARCH=${TARGETARCH/amd64/x86_64}
|
|
curl -o pagefind.tar.gz https://github.com/CloudCannon/pagefind/releases/download/v$PAGEFIND_VERSION/pagefind-v$PAGEFIND_VERSION-$TARGETARCH-unknown-linux-musl.tar.gz -L
|
|
tar xzf pagefind.tar.gz
|
|
rm pagefind.tar.gz
|
|
mv pagefind /usr/bin
|
|
chmod +x /usr/bin/pagefind
|
|
EOF
|
|
|
|
RUN useradd -ms /bin/bash esphome
|
|
|
|
|
|
USER esphome
|
|
|
|
WORKDIR /workspaces/esphome-docs
|
|
ENV PATH="${PATH}:/home/esphome/.local/bin"
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip3 install --no-cache-dir --no-binary :all: -r requirements.txt
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["make", "live-html"]
|
|
|
|
LABEL \
|
|
org.opencontainers.image.title="esphome-docs" \
|
|
org.opencontainers.image.description="An image to help with ESPHomes documentation development" \
|
|
org.opencontainers.image.vendor="ESPHome" \
|
|
org.opencontainers.image.licenses="CC BY-NC-SA 4.0" \
|
|
org.opencontainers.image.url="https://esphome.io" \
|
|
org.opencontainers.image.source="https://github.com/esphome/esphome-docs" \
|
|
org.opencontainers.image.documentation="https://github.com/esphome/esphome-docs/blob/current/README.md"
|