You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
566 B
22 lines
566 B
FROM python:3.9-slim
|
|
|
|
RUN apt-get update && apt-get install -y git texlive-latex-extra texlive-lang-chinese python3 python3-pip
|
|
# RUN apt-get update && apt-get install -y git texlive-latex-extra texlive-lang-chinese python3 python3-pip texlive-lang-european
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
texlive-lang-european \
|
|
texlive \
|
|
texlive-latex-extra \
|
|
texlive-fonts-recommended \
|
|
texlive-fonts-extra \
|
|
texlive-pictures \
|
|
texlive-science
|
|
|
|
|
|
|
|
# CMD om de container niet direct te stoppen
|
|
CMD ["sleep", "infinity"]
|