Initial commit of Dockerfile

This commit is contained in:
PlusMinus 2015-08-17 11:27:43 +02:00
parent 496f113160
commit f4fbe6e041

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM java:jre
MAINTAINER PlusMinus <piddlpiddl@gmail.com>
RUN \
mkdir /opt/JDownloader/ && \
wget -O /opt/JDownloader/JDownloader.jar --progress=bar:force http://installer.jdownloader.org/JDownloader.jar && \
java -Djava.awt.headless=true -jar /opt/JDownloader/JDownloader.jar
CMD java -Djava.awt.headless=true -jar /opt/JDownloader/JDownloader.jar