Skip to content

basic hello-universe application based on nodejs and docker

Notifications You must be signed in to change notification settings

kunal-bhatia/hello-universe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hello-universe

Node 8 base image

docker build -t hello-universe .
docker run --rm -it -p 9000:9000 hello-universe

Node 8 base image with multi stage

docker build -t hello-universe-multistage -f DockerfileMS .
docker run --rm -it -p 9000:9000 hello-universe-multistage

Node 8 base image with google distroless multi stage

docker build -t hello-universe-distroless -f DockerfileDistroless .
docker run --rm -it -p 9000:9000 hello-universe-distroless

Node 8 base image with alpine multi stage

docker build -t hello-universe-alpine -f DockerfileAlpine .
docker run --rm -it -p 9000:9000 hello-universe-alpine
docker images | grep hello-universe

hello-universe-alpine       latest     67.9MB
hello-universe-distroless   latest     74.2MB
hello-universe-multistage   latest     891MB
hello-universe-app          latest     892MB

About

basic hello-universe application based on nodejs and docker

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published