commit 7136f4fb2f67ac8185201bb375160a7bd2427a69 Author: Aurelie Hugues Date: Sun Oct 16 11:55:30 2022 +0200 Initial commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..142c7ff --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +kind: pipeline +type: docker +name: build + +steps: +- name: build and public + image: plugins/docker + settings: + registry: git.faercol.me + image: faercol/latex + username: faercol + password: $GIT_PASSWORD + repo: faercol/latex-docker + tags: latest diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..25b1af3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +FROM ubuntu:jammy +LABEL author="Melora Hugues" +ENV DEBIAN_FRONTEND noninteractive + +RUN apt-get update -q \ + && apt-get install -qy build-essential wget libfontconfig1 \ + && rm -rf /var/lib/apt/lists/* + +# Install TexLive with scheme-basic +RUN wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz; \ + mkdir /install-tl-unx; \ + tar -xvf install-tl-unx.tar.gz -C /install-tl-unx --strip-components=1; \ + echo "selected_scheme scheme-basic" >> /install-tl-unx/texlive.profile; \ + /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}" + +ENV HOME /data +WORKDIR /data + +# Install latex packages +RUN tlmgr install latexmk && \ + tlmgr install fontawesome + +VOLUME ["/data"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b1da5b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Custom Docker image for LaTex documents + +**TODO**