Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logo #1303

Merged
merged 2 commits into from Jul 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
@@ -1,4 +1,4 @@
FROM python:slim
FROM python:3.8-slim

RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1 +1 @@
sphinx>=1.8.4
sphinx==4.0.3