From 94c4ebcd8df83bc458fa9d7fcc4a6aecad58b900 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Thu, 26 Sep 2024 19:07:13 +0700 Subject: [PATCH] wip: alpine lite --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0019303 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine:3.20.3 + +RUN apk add perl wget + +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}" + +RUN wget -qO- "https://yihui.org/tinytex/install-bin-unix.sh" | sh \ No newline at end of file