FROM ubuntu:trusty
LABEL "original-author"="SC" \
      maintainer="SC" \
      organization="IITB"

# Install utilities
RUN apt update
RUN apt install -y firefox 
RUN apt install -y icedtea-7-plugin
RUN apt install -y openjdk-7-jdk

# Set environment variables
#ENV DISPLAY=:0

# Define default command
CMD ["firefox"]
