Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -59,10 +59,9 @@ RSCRIPT
|
|
| 59 |
# ==============================================================================
|
| 60 |
# Copy application files
|
| 61 |
# ==============================================================================
|
| 62 |
-
COPY
|
| 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)"]
|