Skip to content

Commit

Permalink
Bump to 7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Apr 23, 2024
1 parent 86f078b commit ba9591a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:slim
LABEL org.opencontainers.image.authors = "Sphinx Team <https://www.sphinx-doc.org/>"
LABEL org.opencontainers.image.documentation = "https://sphinx-doc.org/"
LABEL org.opencontainers.image.source = "https://github.com/sphinx-doc/sphinx-docker-images"
LABEL org.opencontainers.image.version = "7.2.0"
LABEL org.opencontainers.image.version = "7.2.1"
LABEL org.opencontainers.image.licenses = "BSD-2-Clause"
LABEL org.opencontainers.image.description = "Base container image for Sphinx"

Expand All @@ -18,6 +18,6 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install --no-cache-dir --upgrade pip \
&& python3 -m pip install --no-cache-dir Sphinx==7.2.0 Pillow
&& python3 -m pip install --no-cache-dir Sphinx==7.2.1 Pillow

CMD ["sphinx-build", "-M", "html", ".", "_build"]
4 changes: 2 additions & 2 deletions latexpdf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:slim
LABEL org.opencontainers.image.authors = "Sphinx Team <https://www.sphinx-doc.org/>"
LABEL org.opencontainers.image.documentation = "https://sphinx-doc.org/"
LABEL org.opencontainers.image.source = "https://github.com/sphinx-doc/sphinx-docker-images"
LABEL org.opencontainers.image.version = "7.2.0"
LABEL org.opencontainers.image.version = "7.2.1"
LABEL org.opencontainers.image.licenses = "BSD-2-Clause"
LABEL org.opencontainers.image.description = "LaTeX container image for Sphinx"

Expand Down Expand Up @@ -33,6 +33,6 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install --no-cache-dir --upgrade pip \
&& python3 -m pip install --no-cache-dir Sphinx==7.2.0 Pillow
&& python3 -m pip install --no-cache-dir Sphinx==7.2.1 Pillow

CMD ["sphinx-build", "-M", "latexpdf", ".", "_build"]

0 comments on commit ba9591a

Please sign in to comment.