Guest User

Untitled

a guest
Apr 29th, 2021
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.22 KB | None | 0 0
  1. $ cat Dockerfile
  2. FROM alpine:latest
  3. RUN apk add perl
  4. RUN wget -qO- https://raw.githubusercontent.com/latex3/latex3/main/support/texlive.sh | sh
  5.  
  6. $ docker build -t test .
  7. Sending build context to Docker daemon  290.3kB
  8. Step 1/3 : FROM alpine:latest
  9.  ---> 6dbb9cc54074
  10. Step 2/3 : RUN apk add perl
  11.  ---> Using cache
  12.  ---> 759f445e9455
  13. Step 3/3 : RUN wget -qO- https://raw.githubusercontent.com/latex3/latex3/main/support/texlive.sh | sh
  14.  ---> Running in f3ee53c5f8a6
  15. Connecting to mirror.ctan.org (5.35.249.60:443)
  16. Connecting to ftp.fau.de (131.188.12.211:443)
  17. saving to 'install-tl-unx.tar.gz'
  18. install-tl-unx.tar.g 100% |********************************| 6649k  0:00:00 ETA
  19. 'install-tl-unx.tar.gz' saved
  20. Profile  not readable or not a file, continuing in interactive mode.
  21. query_ctan_mirror: Programs not set up, trying wget
  22. Loading http://www.ctan.org/tex-archive/systems/texlive/tlnet/tlpkg/texlive.tlpdb
  23. cannot contact mirror.ctan.org, returning a backbone server!
  24.  
  25. ./install-tl: TLPDB::from_file could not initialize from: http://www.ctan.org/tex-archive/systems/texlive/tlnet/tlpkg/texlive.tlpdb
  26. ./install-tl: Maybe the repository setting should be changed.
  27. ./install-tl: More info: https://tug.org/texlive/acquire.html
  28.  
Advertisement
Add Comment
Please, Sign In to add comment