aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 5c171224c0b9739d282c380953f8bc651c85a949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]