cjerzak commited on
Commit
de7d245
·
verified ·
1 Parent(s): bccee29

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -59,10 +59,9 @@ RSCRIPT
59
  # ==============================================================================
60
  # Copy application files
61
  # ==============================================================================
62
- COPY app.R /code/app.R
63
- COPY Islam2019_WithGeocodesAndSatData.Rdata /code/
64
  # ==============================================================================
65
  # Shiny entrypoint
66
  # ==============================================================================
67
  EXPOSE 7860
68
- CMD ["R", "--quiet", "-e", "port <- as.integer(Sys.getenv('PORT', '7860')); shiny::runApp('/code', host='0.0.0.0', port=port)"]
 
59
  # ==============================================================================
60
  # Copy application files
61
  # ==============================================================================
62
+ COPY . /code/
 
63
  # ==============================================================================
64
  # Shiny entrypoint
65
  # ==============================================================================
66
  EXPOSE 7860
67
+ CMD ["R", "--quiet", "-e", "port <- as.integer(Sys.getenv('PORT', '7860')); shiny::runApp('/code', host='0.0.0.0', port=port)"]