From 2010018b1589414aa465627f06b596adc796cf98 Mon Sep 17 00:00:00 2001 From: Kevin Gartland Date: Wed, 14 Feb 2024 14:43:03 -0500 Subject: [PATCH] add quarto to docker --- build/ci/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build/ci/Dockerfile b/build/ci/Dockerfile index 379933ef5f..d6b54eb749 100644 --- a/build/ci/Dockerfile +++ b/build/ci/Dockerfile @@ -58,3 +58,12 @@ RUN\ && go env -w GOPATH=/usr/local/go\ # staticcheck is required to for linting Go && go install honnef.co/go/tools/cmd/staticcheck@latest + +ARG QUARTO_VERSION="1.4.549" +ARG PACKAGE="quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" + +RUN\ + curl -fsSLO https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/${PACKAGE}\ + && mkdir /opt/quarto && tar xf ${PACKAGE} -C /usr/local/quarto --strip-components 1 + +ENV PATH="$PATH:/usr/local/quarto/bin"