Skip to content

Commit 3d8874e

Browse files
committed
changed MAINTAINER
1 parent 66c6074 commit 3d8874e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
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 .
@@ -31,7 +31,7 @@
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
############################################################
@@ -40,7 +40,7 @@
4040
FROM 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
4646
RUN 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
5252
RUN add-apt-repository -y ppa:openjdk-r/ppa
53-
RUN apt-get -y update
53+
RUN apt-get -y update
5454
RUN 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

Comments
 (0)