diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 223169a385c20cb3163a08ce5b40851abd9431d6..879681fc11b8e20b2b3ecb4fc76abf913af0a094 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,10 +2,10 @@ FROM mcr.microsoft.com/vscode/devcontainers/java:11 # Set up nodesource, install node, yarn, fontconfig for static viz, rlwrap for dev ergonomics -RUN ( curl -fsSL https://deb.nodesource.com/setup_14.x | bash ) \ +RUN ( curl -fsSL https://deb.nodesource.com/setup_18.x | bash ) \ && export DEBIAN_FRONTEND=noninteractive \ && apt-key adv --refresh-keys --keyserver keyserver.ubuntu.com \ && apt-get update && apt-get -y install --no-install-recommends nodejs yarn rlwrap fontconfig # install Clojure -RUN curl https://download.clojure.org/install/linux-install-1.11.0.1100.sh | bash +RUN curl https://download.clojure.org/install/linux-install-1.11.1.1262.sh | bash