Currently, our dockerfile creates an image for a container that runs the basic flask app.
To build the image:
- Navigate to your project directory.
- Copy
DOIRootCA2.cer
into this directory. - Run
docker build -t flood .
. This will create the docker image and name itflood
.
To run a container based on the image:
docker run -p 5055:5050 -t --name floodviz flood
. This will create a docker container from theflood
image and name itfloodviz
.
Once this is done, 127.0.0.1:5055/home should take you to the example page.