10 lines
144 B
Docker
10 lines
144 B
Docker
FROM debian
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python \
|
|
python-pip \
|
|
texlive
|
|
|
|
RUN pip install virtualenv
|
|
|
|
CMD ["/bin/bash"] |