23 lines
353 B
Docker
23 lines
353 B
Docker
|
FROM archlinux
|
||
|
LABEL maintiner="Mark <mark@betalupi.com>"
|
||
|
|
||
|
RUN pacman -Fyy --noconfirm && \
|
||
|
#pacman -Syu --noconfirm && \
|
||
|
pacman -Sy --noconfirm \
|
||
|
# Texlive
|
||
|
texlive-most \
|
||
|
texlive-fontsextra \
|
||
|
texlive-lang \
|
||
|
# Tectonic
|
||
|
tectonic
|
||
|
|
||
|
RUN pacman -Sy --noconfirm \
|
||
|
curl \
|
||
|
git \
|
||
|
openssh \
|
||
|
python
|
||
|
|
||
|
ENV HOME /data
|
||
|
WORKDIR /data
|
||
|
VOLUME /data
|