This commit is contained in:
Jesse Hills 2021-07-14 12:57:00 +12:00 committed by GitHub
parent 9f80fda6a0
commit 8610f3da3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM python:slim
FROM python:3.8-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
@ -9,8 +9,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
RUN pip3 install --no-cache-dir --no-binary :all: \
sphinx
COPY requirements.txt .
RUN pip3 install --no-cache-dir --no-binary :all: -r requirements.txt
EXPOSE 8000
WORKDIR /data/esphomedocs

View File

@ -1 +1 @@
sphinx>=1.8.4
sphinx==4.0.3