aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-02-22 03:54:36 -0500
committerkj_sh6042026-02-22 03:54:36 -0500
commiteb1d4ef955fef6f8f328c5cd5ade6fca733124be (patch)
treeaad68648a5f9cc0d61f340528e5ae7fb6312b279
parent4e842852b13d84daede1b6b5db5c592fab4d3ff5 (diff)
refactor: use texlive-full
-rw-r--r--Dockerfile13
-rw-r--r--src/VERSION2
2 files changed, 6 insertions, 9 deletions
diff --git a/Dockerfile b/Dockerfile
index f990a10..59235eb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,13 +2,10 @@ FROM php:8-cli
RUN apt-get update && apt-get install -y \
pandoc \
- texlive \
- texlive-latex-extra \
- texlive-fonts-extra \
- texlive-lang-chinese \
- texlive-lang-japanese \
- texlive-lang-all \
- && rm -rf /var/lib/apt/lists/*
+ texlive-full \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/* \
+ && rm -rf /tmp/* /var/tmp/*
WORKDIR /app
@@ -16,4 +13,4 @@ COPY src/ .
EXPOSE 8080
-CMD ["php", "-S", "0.0.0.0:8080"]
+CMD ["php", "-S", "0.0.0.0:8080"] \ No newline at end of file
diff --git a/src/VERSION b/src/VERSION
index 7676773..86b33cf 100644
--- a/src/VERSION
+++ b/src/VERSION
@@ -1 +1 @@
-2026.02.22-0252
+2026.02.22-0354