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