diff options
| -rw-r--r-- | Dockerfile | 19 | ||||
| -rw-r--r-- | src/VERSION | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5c17122 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM php:8.5.1-cli + +RUN apt update && apt 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/* + +WORKDIR /app + +COPY src/ . + +EXPOSE 8080 + +CMD ["php", "-S", "0.0.0.0:8080"]
\ No newline at end of file diff --git a/src/VERSION b/src/VERSION index e17e721..edf2032 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -2025.12.31-0811 +2025.12.31-0858 |
