Compare commits

..

1 Commits

Author SHA1 Message Date
Supan Adit Pratama
7906faeaa6 wip: tinytex version ( still need perl ) 2024-09-26 18:51:47 +07:00
2 changed files with 15 additions and 12 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM busybox:1.36.1
WORKDIR /tmp
RUN wget -O tinytex.tar.gz https://yihui.org/tinytex/TinyTeX-0.tar.gz
RUN tar -xzvf tinytex.tar.gz
RUN mv .TinyTeX /root/.TinyTeX
ENV PATH="/root/.TinyTeX/bin/x86_64-linux:${PATH}"

View File

@ -2,6 +2,10 @@
This repository contains a Docker setup for Texlive, a comprehensive TeX system. It allows users to compile LaTeX documents in a consistent environment without needing to install Texlive directly on their local machine. The Docker container includes all necessary dependencies and tools to work with LaTeX files efficiently. This repository contains a Docker setup for Texlive, a comprehensive TeX system. It allows users to compile LaTeX documents in a consistent environment without needing to install Texlive directly on their local machine. The Docker container includes all necessary dependencies and tools to work with LaTeX files efficiently.
## This repository has automation for building Docker images which are available on the following links:
[Drone CI](https://drone.supanadit.com/supanadit/docker-texlive)
## Requirements ## Requirements
- Docker - Docker
@ -17,16 +21,6 @@ docker run --rm -it -w "/tex" -v ${PWD}:/tex git.supanadit.com/supanadit/docker-
docker run --rm -it -w "/tex" -v %cd%:/tex git.supanadit.com/supanadit/docker-texlive:1.0.0-ubuntu-full.1 docker run --rm -it -w "/tex" -v %cd%:/tex git.supanadit.com/supanadit/docker-texlive:1.0.0-ubuntu-full.1
``` ```
## Available Tags ## Notes
- `1.0.0-ubuntu-full.1` - Full version of texlive on ubuntu I currently have only full version of texlive, but I will add more version in the future. Even light version of texlive on busybox and scratch.
- `1.0.0-alpine.1` - Lite version of texlive on alpine
- `0.0.1-awesome-cv.1` - Tailored version for [Awesome CV](https://github.com/posquit0/Awesome-CV) based on Ubuntu
- `0.0.2-awesome-cv.1` - Tailored version for [Awesome CV](https://github.com/posquit0/Awesome-CV) based on Ubuntu ( Broken don't used it )
- `0.0.2-awesome-cv.2` - Tailored version for [Awesome CV](https://github.com/posquit0/Awesome-CV) based on Ubuntu ( Fixed version, for smaller image size )
- `0.0.3-awesome-cv.1` - Tailored version for [Awesome CV](https://github.com/posquit0/Awesome-CV) based on Alpine ( Recomended )
## Available Registry
- [Docker Hub](https://hub.docker.com/r/supanadit/docker-texlive)
- [My Gitea Registry](https://git.supanadit.com/supanadit/-/packages/container/docker-texlive)