I'm pretty new to docker and what I want to do is to create a docker image of my Meteor App then run it in a container. (I'm working on OSX)
Correct me if I'm wrong but the steps are:
1)cd /myMeteorApp
2)create a file Dockerfile containing in my case FROM meteorhacks/meteord:onbuild
3) docker build --tag jeromevi:mycoolmeteorapp .
4) docker images
and here I have that:
Someone can help me to figure out what I'm doing wrong please ?
[EDIT] The screenshot bellow is what happened when I created my image
If someone has the same problem as me I have resolved it with
https://github.com/jshimko/meteor-launchpad
Thank you to @Rambler for the help