Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# sudo docker build . -t shiny-calibration:latest -f Dockerfile
# docker run --rm -p 3838:3838 shiny-calibration
# docker tag `local-image:tagname` cedlich/shiny_poshoc_calibration:20220912
# docker push cedlich/shiny_poshoc_calibration:20220912
FROM rocker/shiny-verse:latest
RUN apt-get update -qq \
&& apt-get -y --no-install-recommends install \
lbzip2 \
&& install2.r --error --deps TRUE \
shinyWidgets \
foreach \
DT \
shinythemes \
shinyjs \
openxlsx
## copy all the content of `CalibraShiny` to `/srv/shiny-server/`
ADD CalibraShiny /srv/shiny-server/
# run app
CMD ["/usr/bin/shiny-server"]