Skip to content

Commit

Permalink
add quarto to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gartland committed Feb 14, 2024
1 parent edc0187 commit 2010018
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build/ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 2010018

Please sign in to comment.