aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Dockerfile13
1 files changed, 5 insertions, 8 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