8 lines
134 B
Docker
8 lines
134 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y texlive-full
|
|
|
|
COPY entrypoint.sh /root/
|
|
|
|
ENTRYPOINT ["/root/entrypoint.sh"]
|