diff options
| -rw-r--r-- | Dockerfile | 13 | ||||
| -rw-r--r-- | src/VERSION | 2 |
2 files changed, 6 insertions, 9 deletions
@@ -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 |
