88# @author nemonik (Michael Joseph Walsh <[email protected] >)99#
1010# WHAT TO DO:
11- #
12- # If you have Docker installed, from the root of the project run
11+ #
12+ # If you have Docker installed, from the root of the project run
1313# the following to create a container image for this Dockerfile via:
1414#
15- # docker build -t nemonik /java-stix .
15+ # docker build -t stix /java-stix .
1616#
1717# Then create a container using the image you just created via:
1818#
19- # docker run -t -i nemonik /java-stix /bin/bash
19+ # docker run -t -i stix /java-stix /bin/bash
2020#
21- # To retrieve the jar archives from the running docker container use following
21+ # To retrieve the jar archives from the running docker container use following
2222# from the command-line of your docker host, not the container:
2323#
2424# docker cp <container id>:/java-stix/build/libs/stix-1.1.1.2-SNAPSHOT-javadoc.jar .
3131#
3232# An example of retrieving the snapshot jar would be the following:
3333#
34- # ➜ /tmp docker cp 83ad9afb6096:/java-stix/build/libs/stix-1.1.1.2-SNAPSHOT.jar .
34+ # ➜ /tmp docker cp 83ad9afb6096:/java-stix/build/libs/stix-1.1.1.2-SNAPSHOT.jar .
3535#
3636#
3737# ###########################################################
4040FROM ubuntu:15.04
4141
4242# File Maintainer
43- MAINTAINER Michael Joseph Walsh
43+ MAINTAINER STIX Project, The MITRE Corporation
4444
4545# Update the sources list
4646RUN apt-get -y update
@@ -50,13 +50,13 @@ RUN apt-get install -y tar git curl nano wget dialog net-tools build-essential s
5050
5151# To install the default OpenJDK environment
5252RUN add-apt-repository -y ppa:openjdk-r/ppa
53- RUN apt-get -y update
53+ RUN apt-get -y update
5454RUN apt-get -y install openjdk-8-jdk
5555
5656# To install the OpenJDK 7, comment out the above and uncomment the following.
5757# RUN apt-get install -y openjdk-7-jdk
5858
59- # Optionally to install the Oracle JDK, comment out the above, uncomment the
59+ # Optionally to install the Oracle JDK, comment out the above, uncomment the
6060# the next 3 lines, and then uncommment the preferred JDK version.
6161# RUN apt-get -y install python-software-properties
6262# RUN add-apt-repository -y ppa:webupd8team/java
0 commit comments