Skip to content

Latest commit

 

History

History

04-docker-deps

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

COVID-19 Shiny app

A dockerized Shiny app to display and forecast COVID-19 daily cases

The basic approach uses DESCRIPTION file to install dependencies.

# name of the Docker image
export IMAGE="analythium/covidapp-shiny:deps"

# build image
docker build -t $IMAGE .

# run and test locally
docker run -p 8080:3838 $IMAGE
# visit http://localhost:8080 to see the app

# push image to registry
docker push $IMAGE