Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ysilvela/javahelloworld
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: tchia04/javahelloworld
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 2, 2016

  1. Update HelloWorld.java

    tchia04 committed May 2, 2016
    Copy the full SHA
    d565c7f View commit details
  2. Update Dockerfile

    tchia04 committed May 2, 2016
    Copy the full SHA
    2cb458a View commit details
Showing with 3 additions and 2 deletions.
  1. +1 −1 Dockerfile
  2. +2 −1 src/HelloWorld.java
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ WORKDIR /home/root/javahelloworld
RUN mkdir bin
RUN javac -d bin src/HelloWorld.java

RUN apt-get update && apt-get install -y vim
RUN apt-get update && apt-get install -y vim curl wget

ENTRYPOINT ["java", "-cp", "bin", "HelloWorld"]

3 changes: 2 additions & 1 deletion src/HelloWorld.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
public class HelloWorld
{
public static void main (String [] args)
{
{
System.out.println("Good Morning");
System.out.println("hello world again");
}
}