Fix Gitpod dev setup by forcing a dev image rebuild (#2783)

This commit is contained in:
Jan Keromnes 2020-12-08 18:44:23 +01:00 committed by GitHub
parent af2f064f42
commit e000ed47cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
.gitpod.Dockerfile vendored
View File

@ -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