Skip to content

Commit 5432e30

Browse files
committed
Bugs correction
1 parent cd2e16d commit 5432e30

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ COPY inst/hg38_Coordinates.rds /app
4040
COPY inst/hg37_Coordinates.rds /app
4141
COPY tools/ReViewCNV.R /app
4242

43-
CMD R -e "shiny::runApp('/app', host='0.0.0.0', port=as.numeric(Sys.getenv('PORT')))"
43+
CMD R -e "port <- as.numeric(Sys.getenv('PORT', '6868')); shiny::runApp('/app', host='0.0.0.0', port=port)"
4444

4545

4646

tools/ReViewCNV.R

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ library(arrow)
1212
# Specify the application port
1313

1414

15-
port <- as.integer(Sys.getenv("SHINYPROXY_PORT", "6868"))
16-
options(shiny.port = port, shiny.host = "0.0.0.0")
17-
1815
options(shiny.maxRequestSize = 50 * 1024^2)
1916

2017
options(shiny.fullstacktrace = TRUE)

0 commit comments

Comments
 (0)