aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: b7c472b4e40d50331132d5f7255cad03d44aeab0 (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-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/*

WORKDIR /app

COPY src/ .

EXPOSE 8080

CMD ["php", "-S", "0.0.0.0:8080"]