Skip to content

Commit

Permalink
Attempt to install texlive manually
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoch authored Jul 18, 2024
1 parent 00e09c3 commit 2ae1e0c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion rocky/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ FROM spack/rockylinux${tag}:latest AS builder
ARG ARCH=x86_64
ENV ARCH=${ARCH}

RUN dnf update -y && dnf install -y gettext
# rocky 9 doesn't easily install texlive, which has a makeinfo
RUN dnf update -y && dnf install -y gettext wget && \
wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \
tar -xzvf install-tl-unx.tar.gz && \
dirname=$(ls install-tl-*) && \
cd $dirname && \
perl ./install-tl --no-interaction

ENV PATH=/usr/local/texlive/2024/bin/x86_64-linux:$PATH

# Specify flux deps in the spack manifest file (spack.yaml)
RUN mkdir /opt/spack-environment \
Expand Down

0 comments on commit 2ae1e0c

Please sign in to comment.