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.
14 lines
274 B
14 lines
274 B
FROM miktex/miktex
|
|
|
|
LABEL Description="Docker container from MiKTeX, Ubuntu 20.04, with Pygments" Version="1.0"
|
|
|
|
RUN rm /etc/apt/sources.list.d/miktex.list
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install python3-pip -y
|
|
RUN pip install pygments
|
|
|
|
WORKDIR /miktex/work
|
|
|
|
CMD ["bash"]
|
|
|
|
|