Skip to content

Commit b6e26a7

Browse files
committed
install quarto-bin in dockerfile
ropensci/software-review#686
1 parent f1218ed commit b6e26a7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: pkgcheck
22
Title: rOpenSci Package Checks
3-
Version: 0.1.2.116
3+
Version: 0.1.2.117
44
Authors@R: c(
55
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265")),

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -305,3 +305,10 @@ RUN Rscript -e 'arrow::install_arrow()'
305305
# Plus current ubuntu-unstable versions cause failed linkage of sf to GEOS, so
306306
# need to reinstall both 'sf' and 'terra' without bspm:
307307
RUN Rscript -e 'bspm::disable();install.packages(c("sf","terra"));bspm::enable()'
308+
309+
# Quarto binary:
310+
RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.6.40/quarto-1.6.40-linux-amd64.tar.gz \
311+
&& mkdir ~/opt \
312+
&& tar -C ~/opt -xvzf quarto-1.6.40-linux-amd64.tar.gz \
313+
&& ln -s ~/opt/quarto-1.6.40/bin/quarto /usr/local/bin/quarto \
314+
&& rm quarto-1.6.40-linux-amd64.tar.gz

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/pkgcheck",
99
"issueTracker": "https://github.com/ropensci-review-tools/pkgcheck/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.2.116",
11+
"version": "0.1.2.117",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

0 commit comments

Comments
 (0)