diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..6717914a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "name": "Debian", + "image": "mcr.microsoft.com/devcontainers/base:bullseye", + + "features": { + "ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": {}, + "ghcr.io/rocker-org/devcontainer-features/r-rig:1": {}, + "ghcr.io/devcontainers-extra/features/zig:1": {} + }, + + "postCreateCommand": "sudo apt-get update && sudo apt-get install -y librsvg2-bin && Rscript dependencies.R && Rscript -e \"install.packages('tinytex'); tinytex::install_tinytex()\"" +}