moloch-dragon/docker/Dockerfile

17 lines
315 B
Docker

## Contributed by Walter Schulze (@awalterschulze)
## Simplified by Dirk Eddelbuettel (@eddelbuettel)
FROM ubuntu:trusty
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -q
RUN apt-get install -qy texlive-full
RUN apt-get install -qy \
gnuplot \
wget \
build-essential
WORKDIR /data
VOLUME ["/data"]