Skip to content

Commit

Permalink
chore: update renv.lock; add Dockerfile; update tables.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepanshKhurana committed Oct 4, 2024
1 parent 790992c commit efa67f4
Show file tree
Hide file tree
Showing 5 changed files with 394 additions and 292 deletions.
23 changes: 23 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM rocker/r-ver

RUN R -e "install.packages('renv')"

RUN apt-get update && apt-get install -y \
libcurl4-gnutls-dev \
libssl-dev \
libxml2-dev \
libpq-dev \
libssl-dev \
pkg-config \
cmake-data

RUN mkdir /root/Argus
COPY . /root/Argus

WORKDIR /root/Argus/

RUN R -e "renv::restore()"

EXPOSE 3838

CMD ["R", "-e", "shiny::runApp('/root/Argus', host = '0.0.0.0', port = 3838)"]
4 changes: 2 additions & 2 deletions dependencies.R
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file allows packrat (used by rsconnect during deployment) to pick up dependencies.
library(glue)
library(dplyr)
library(checkmate)
library(httr2)
library(reactable)
library(reactable.extras)
library(rhino)
library(shinyalert)
library(shinyjs)
Expand Down
Loading

0 comments on commit efa67f4

Please sign in to comment.