metropolis_theme/docker/Dockerfile

20 lines
405 B
Docker
Raw Normal View History

2015-06-25 13:49:30 +02:00
## Contributed by Walter Schulze (@awalterschulze)
## Simplified by Dirk Eddelbuettel (@eddelbuettel)
FROM ubuntu:trusty
ENV DEBIAN_FRONTEND noninteractive
2015-06-27 11:58:18 +02:00
RUN apt-get update -q
RUN apt-get install -qy texlive-full
RUN apt-get install -qy \
2015-06-25 13:49:30 +02:00
gnuplot \
2015-06-27 11:58:18 +02:00
wget \
build-essential
2015-06-25 13:49:30 +02:00
ADD ./getFiraFont.sh ./getFiraFont.sh
RUN ./getFiraFont.sh
WORKDIR /data
VOLUME ["/data"]