Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ ADD ./covidapp /srv/shiny-server
RUN chmod -R +r /srv/shiny-server
RUN rm /srv/shiny-server/app_customData.R

RUN apt-get update && apt-get install -y --no-install-recommends \
libuv1 \
libuv1-dev \
cmake \
make \
pkg-config \
&& rm -rf /var/lib/apt/lists/*

# Install deps and package
RUN R -e "devtools::install_deps('/srv/shiny-server')"
RUN R -e "devtools::install('/srv/shiny-server')"
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile_customData
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ RUN chmod -R +r /srv/shiny-server
RUN rm /srv/shiny-server/app.R
RUN mv /srv/shiny-server/app_customData.R /srv/shiny-server/app.R

RUN apt-get update && apt-get install -y --no-install-recommends \
libuv1 \
libuv1-dev \
cmake \
make \
pkg-config \
&& rm -rf /var/lib/apt/lists/*

# Install deps and package
RUN R -e "devtools::install_deps('/srv/shiny-server')"
RUN R -e "devtools::install('/srv/shiny-server')"
Expand Down
Loading