Skip to content

Commit

Permalink
Merge pull request #1051 from sphinx-contrib/add-more-latex-packages-…
Browse files Browse the repository at this point in the history
…to-ci-image

support: adding more latex packages to documentation container
  • Loading branch information
jdknight authored Oct 13, 2024
2 parents 14e8bb4 + 30eb213 commit 008004b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# https://github.com/sigstore/cosign-installer
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3.4.0
uses: sigstore/cosign-installer@v3.7.0

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./support/docker/Dockerfile
Expand Down
5 changes: 4 additions & 1 deletion support/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ RUN apt-get update && apt-get install --assume-yes \
python3-pip \
# Allow preparing a virtual environment
python3-venv \
# TeX Live extra for LaTeX/PDF support
# TeX Live extra/fonts for LaTeX/PDF support
texlive-fonts-extra \
texlive-fonts-recommended \
texlive-latex-extra \
texlive-latex-recommended \
# Tool used for select tests
tox \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 008004b

Please sign in to comment.