Files
docker/latex/fmt/Dockerfile

11 lines
171 B
Docker

FROM alpine
WORKDIR /root
RUN apk add texlive-binextra perl-file-homedir perl-yaml-tiny
COPY ./format.sh /root/
RUN chmod +x /root/format.sh
CMD [ "/root/format.sh" ]