A ordering portal for ordering radiology images for research purposes. This webb app is a full-stack flask application.
pip install -r requirements.txt
cd ordering_portal
flask run
docker build --tag ordering_portal .
The best solution is to run the image in detached mode. Because we need to view this application in the browser rather than the container, we'll modify our docker run and add two additional tags: "-d" to run it in detached mode and "-p" to specify the port to be exposed.
docker run -p 5000:5000 ordering_portal
docker pull gustavlagneborg/ordering_portal
The best solution is to run the image in detached mode. Because we need to view this application in the browser rather than the container, we'll modify our docker run and add two additional tags: "-d" to run it in detached mode and "-p" to specify the port to be exposed.
docker run -p 5000:5000 gustavlagneborg/ordering_portal
For local access visit: 127.0.0.1:5000/