-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Based on ubuntu 16.04, install dependecies
- Loading branch information
1 parent
6a552b2
commit 779c423
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:14.04 | ||
FROM ubuntu:16.04 | ||
|
||
# | ||
# IGUANA Benchmark in a Docker container | ||
|
@@ -11,6 +11,7 @@ FROM ubuntu:14.04 | |
# /start.sh To start the benchmark (autostart) | ||
# | ||
|
||
MAINTAINER Simeon Ackermann <[email protected]> | ||
MAINTAINER Konrad Abicht <[email protected]> | ||
|
||
# Let the conatiner know that there is no tty | ||
|
@@ -20,7 +21,7 @@ ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get clean && apt-get update | ||
|
||
# install some java | ||
RUN apt-get install -y openjdk-7-jre | ||
RUN apt-get install -y netcat openjdk-8-jre | ||
|
||
# create /iguana | ||
RUN mkdir /iguana | ||
|