Skip to content

Commit 3b7bc5b

Browse files
committed
Merge branch '252-blog-post-autoslider-open-sourced-now' of https://github.com/pharmaverse/blog into 252-blog-post-autoslider-open-sourced-now
2 parents f1ff957 + 2d9b4d3 commit 3b7bc5b

File tree

2 files changed

+69
-24
lines changed

2 files changed

+69
-24
lines changed

Dockerfile

+32-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ RUN apt-get update \
44
&& apt-get install -y --no-install-recommends \
55
ca-certificates \
66
curl \
7+
libxml2-dev \
8+
libcurl4-openssl-dev \
9+
zlib1g-dev \
10+
libfontconfig1-dev \
11+
libharfbuzz-dev libfribidi-dev \
12+
libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev \
13+
libmbedtls-dev cmake \
14+
libnng-dev xz-utils\
15+
libcairo2-dev \
16+
libgit2-dev \
17+
pkgconf \
718
&& apt-get clean \
819
&& rm -rf /var/lib/apt/lists/* \
9-
&& curl -o quarto.deb -L https://github.com/quarto-dev/quarto-cli/releases/download/v1.4.550/quarto-1.4.550-linux-amd64.deb \
20+
&& curl -o quarto.deb -L https://github.com/quarto-dev/quarto-cli/releases/download/v1.6.42/quarto-1.6.42-linux-arm64.deb \
1021
&& dpkg --install quarto.deb \
1122
&& rm -f quarto.deb \
1223
&& R -e 'install.packages(c( \
@@ -23,4 +34,23 @@ RUN apt-get update \
2334
"metacore", \
2435
"metatools", \
2536
"xportr", \
26-
"pharmaverseadam"))'
37+
"pharmaverseadam", \
38+
"link", \
39+
"sessioninfo", \
40+
"rtables", \
41+
"teal", \
42+
"riskmetric", \
43+
"tidyCDISC", \
44+
"mirai", \
45+
"dverse", \
46+
"DT", \
47+
"xportr", \
48+
"sdtm.oak", \
49+
"teal", \
50+
"riskmetric", \
51+
"tidyCDISC", \
52+
"admiralonco", \
53+
"admiralophtha", \
54+
"admiralpeds", \
55+
"admiralvaccine", \
56+
"admiralmetabolic"))'

README.md

+37-22
Original file line numberDiff line numberDiff line change
@@ -93,28 +93,43 @@ Most importantly:
9393

9494
* You can use this code snippet to install all packages needed for the blog site or use the docker image cited below.
9595
```
96-
install.packages(c("jsonlite",
97-
"tidyverse",
98-
"spelling",
99-
"janitor",
100-
"diffdf",
101-
"admiral",
102-
"patchwork",
103-
"here",
104-
"reactable",
105-
"pharmaversesdtm",
106-
"metacore",
107-
"metatools",
108-
"xportr",
109-
"pharmaverseadam",
110-
"link",
111-
"sessioninfo",
112-
"rtables",
113-
"teal",
114-
"riskmetric",
115-
"tidyCDISC",
116-
"mirai",
117-
"admiralmetabolic"))
96+
install.packages(
97+
c(
98+
"jsonlite",
99+
"tidyverse",
100+
"spelling",
101+
"janitor",
102+
"diffdf",
103+
"admiral",
104+
"patchwork",
105+
"here",
106+
"reactable",
107+
"pharmaversesdtm",
108+
"metacore",
109+
"metatools",
110+
"xportr",
111+
"pharmaverseadam",
112+
"link",
113+
"sessioninfo",
114+
"rtables",
115+
"teal",
116+
"riskmetric",
117+
"tidyCDISC",
118+
"mirai",
119+
"dverse",
120+
"DT",
121+
"xportr",
122+
"sdtm.oak",
123+
"teal",
124+
"riskmetric",
125+
"tidyCDISC",
126+
"admiralonco",
127+
"admiralophtha",
128+
"admiralpeds",
129+
"admiralvaccine",
130+
"admiralmetabolic"
131+
)
132+
)
118133
```
119134
## How to Use the `blog` Docker Image for Local Development
120135

0 commit comments

Comments
 (0)