mirror of
https://github.com/nushell/nushell.git
synced 2025-01-29 09:39:17 +01:00
16 lines
475 B
Docker
16 lines
475 B
Docker
FROM gitpod/workspace-full
|
|
|
|
USER root
|
|
RUN apt-get update && apt-get install -y libssl-dev \
|
|
libxcb-composite0-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
|