From 254939ae13a7fddb42209f6895d4e053d25b7418 Mon Sep 17 00:00:00 2001 From: Gerald Bauer Date: Sat, 12 Sep 2020 19:20:52 +0200 Subject: [PATCH] Update docker_java.md --- docker_java.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker_java.md b/docker_java.md index af92739..c4d18d4 100644 --- a/docker_java.md +++ b/docker_java.md @@ -83,12 +83,8 @@ $ docker build . Sending build context to Docker daemon 2.048kB Step 1/2 : FROM ubuntu - ---> 4e2eef94cd6b Step 2/2 : RUN echo 'Hello world' - ---> Running in a49a1961315d Hello world -Removing intermediate container a49a1961315d - ---> 09953f45072b Successfully built 09953f45072b @@ -203,7 +199,7 @@ RUN cd /src; npm install --production # Bundle app source COPY hello.js /src/hello.js -# app binds to port 8080 +# App binds to port 8080 EXPOSE 8080 # Last but not least, define the command to run your app