Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Latex CTAN Docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INS Courses
Templates
Latex CTAN Docker
Commits
ed049fe1
Commit
ed049fe1
authored
2 years ago
by
Marco Martinez
Browse files
Options
Downloads
Patches
Plain Diff
add architecture independence
parent
1a49f9a7
No related branches found
No related tags found
1 merge request
!3
add architecture independence
Pipeline
#178131
passed
2 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+16
-12
16 additions, 12 deletions
Dockerfile
with
16 additions
and
12 deletions
Dockerfile
+
16
−
12
View file @
ed049fe1
...
...
@@ -7,15 +7,15 @@ ENV DEBIAN_FRONTEND noninteractive
# Install basics
RUN
apt-get update
-q
\
&&
apt-get
install
-qy
--no-install-recommends
\
build-essential
\
wget
\
libfontconfig1
\
locales
\
rubber
\
python3
\
python3-pip
\
python3-pygments
\
fonts-liberation
\
build-essential
\
wget
\
libfontconfig1
\
locales
\
rubber
\
python3
\
python3-pip
\
python3-pygments
\
fonts-liberation
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
pip3
install
gummi
...
...
@@ -36,9 +36,13 @@ RUN wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz; \
/install-tl-unx/install-tl
-profile
/install-tl-unx/texlive.profile
;
\
rm
-r
/install-tl-unx
;
\
rm
install-tl-unx.tar.gz
ENV
PATH="/usr/local/texlive/2022/bin/x86_64-linux:${PATH}"
RUN
tlmgr
install
latexmk
RUN
tlmgr
install
scheme-full
RUN
export
PATH
=
"/usr/local/texlive/2022/bin/
$(
uname
-p
)
-linux:
${
PATH
}
"
;
\
tlmgr
install
latexmk
;
\
tlmgr
install
scheme-full
# Add texlive to PATH with correct architecture
RUN
echo
"export PATH=/usr/local/texlive/2022/bin/
$(
uname
-p
)
-linux:
\$
PATH"
>>
/home/vscode/.bashrc
# Fix latexindent requirements
RUN
cpan Unicode::GCString
;
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment