Update .gitpod.Dockerfile

This commit is contained in:
Sean Hellum 2019-09-27 20:04:24 -05:00 committed by GitHub
parent 0d8768b827
commit aa495f4d74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
.gitpod.Dockerfile vendored
View file

@ -6,10 +6,4 @@ RUN apt-get update && apt-get install -y libssl-dev \
pkg-config \
curl \
rustc
RUN echo "##vso[task.prependpath]/root/.cargo/bin" && \
rustc -Vv && \
if $RELEASE; then cargo build --release && cargo run --release; \
cp target/release/nu /usr/local/bin; \
else cargo build; \
cp target/debug/nu /usr/local/bin; fi;
RUN cargo build