diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 4f1fa66deb..7a4798ad37 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,9 @@ FROM gitpod/workspace-full +# Gitpod will not rebuild Nushell's dev image unless *some* change is made to this Dockerfile. +# To force a rebuild, simply increase this counter: +ENV TRIGGER_REBUILD 1 + USER gitpod RUN sudo apt-get update && \ @@ -11,4 +15,4 @@ RUN sudo apt-get update && \ rust-lldb \ && sudo rm -rf /var/lib/apt/lists/* -ENV RUST_LLDB=/usr/bin/lldb-8 +ENV RUST_LLDB=/usr/bin/lldb-11