Skip to content

Commit 4a0968e

Browse files
committed
1.55
1 parent 6c1bb7f commit 4a0968e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal
1+
FROM ubuntu:latest
22

33
#RUN sed -i 's/archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list && \
44
# sed -i 's/security.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list && \
@@ -36,6 +36,7 @@ RUN apt-get update && apt-get install -y \
3636
qpdf \
3737
fonts-nanum \
3838
libpq5 \
39+
cmake \
3940
supervisor && \
4041
apt-get clean && \
4142
rm -rf /var/lib/apt/lists/*
@@ -71,15 +72,15 @@ RUN apt-get update && apt-get install -y \
7172
#RUN RSTUDIO_LATEST=$(wget --no-check-certificate -qO- https://s3.amazonaws.com/rstudio-server/current.ver) && \
7273
# [ -z "$RSTUDIO_VERSION" ] && RSTUDIO_VERSION=${RSTUDIO_LATEST%.*} || true && \
7374
#wget -q https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2022.02.3-492-amd64.deb && \
74-
RUN wget https://rstudio.org/download/latest/stable/server/bionic/rstudio-server-latest-amd64.deb && \
75+
RUN wget https://rstudio.org/download/latest/stable/server/jammy/rstudio-server-latest-amd64.deb && \
7576
dpkg -i rstudio-server-latest-amd64.deb && \
7677
rm rstudio-server-*-amd64.deb
7778

7879

7980
# Install Shiny server
80-
RUN wget --no-verbose https://s3.amazonaws.com/rstudio-shiny-server-os-build/ubuntu-14.04/x86_64/VERSION -O "version.txt" && \
81+
RUN wget --no-verbose https://s3.amazonaws.com/rstudio-shiny-server-os-build/ubuntu-18.04/x86_64/VERSION -O "version.txt" && \
8182
VERSION=$(cat version.txt) && \
82-
wget --no-verbose "https://s3.amazonaws.com/rstudio-shiny-server-os-build/ubuntu-14.04/x86_64/shiny-server-$VERSION-amd64.deb" -O ss-latest.deb && \
83+
wget --no-verbose "https://download3.rstudio.org/ubuntu-18.04/x86_64/shiny-server-$VERSION-amd64.deb" -O ss-latest.deb && \
8384
gdebi -n ss-latest.deb && \
8485
rm -f version.txt ss-latest.deb && \
8586
R -e "install.packages(c('shiny', 'rmarkdown', 'DT', 'data.table', 'ggplot2', 'devtools', 'epiDisplay', 'tableone', 'svglite', 'plotROC', 'pROC', 'labelled', 'geepack', 'lme4', 'PredictABEL', 'shinythemes', 'maxstat', 'manhattanly', 'Cairo', 'future', 'promises', 'GGally', 'fst', 'blogdown', 'metafor', 'roxygen2', 'MatchIt', 'distill', 'lubridate', 'testthat', 'rversions', 'spelling', 'rhub', 'remotes', 'ggpmisc', 'RefManageR', 'tidyr', 'shinytest', 'ggpubr', 'kableExtra', 'timeROC', 'survC1', 'survIDINRI', 'colourpicker', 'shinyWidgets', 'devEMF', 'see', 'aws.s3', 'epiR', 'zip', 'keyring', 'shinymanager', 'kappaSize', 'irr', 'gsDesign', 'jtools', 'svydiags', 'shinyBS', 'highcharter', 'forestplot', 'qgraph', 'bootnet', 'rhandsontable', 'meta', 'showtext', 'officer', 'rvg'), repos='https://cran.rstudio.com/')" && \

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.54
2+
3+
* Add `markdown` package
4+
5+
* Apply latest Ubuntu/Rpackages
6+
7+
18
## 1.52
29

310
* Apply latest Rstudio-server

0 commit comments

Comments
 (0)