We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc84989 commit cd2e16dCopy full SHA for cd2e16d
2 files changed
Dockerfile
@@ -39,7 +39,8 @@ COPY inst/www /app/www
39
COPY inst/hg38_Coordinates.rds /app
40
COPY inst/hg37_Coordinates.rds /app
41
COPY tools/ReViewCNV.R /app
42
-ENTRYPOINT ["Rscript", "ReViewCNV.R"]
+
43
+CMD R -e "shiny::runApp('/app', host='0.0.0.0', port=as.numeric(Sys.getenv('PORT')))"
44
45
46
tools/ReViewCNV.R
@@ -11,6 +11,7 @@ library(arrow)
11
12
# Specify the application port
13
14
15
port <- as.integer(Sys.getenv("SHINYPROXY_PORT", "6868"))
16
options(shiny.port = port, shiny.host = "0.0.0.0")
17
0 commit comments