trivial change to trigger ci

Signed-off-by: Vanessa Sochat <vsochat@stanford.edu>
This commit is contained in:
Vanessa Sochat
2019-08-29 11:21:49 -04:00
parent 31dd643642
commit 40ca353c48
2 changed files with 67 additions and 63 deletions

View File

@ -1,17 +1,18 @@
FROM rust:1.37-slim
# docker build -t nushell/nu-base .
# docker build -f docker/Dockerfile.nu-base -t nushell/nu-base .
# docker run -it nushell/nu-base
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y libssl-dev \
libxcb-composite0-dev \
libx11-dev \
pkg-config && \
mkdir -p /code
pkg-config
RUN USER=root cargo new --bin /code
ADD . /code
WORKDIR /code
RUN cargo build --release && cargo run --release && \
cp target/release/nu /usr/local/bin
ADD . /code
RUN cargo build --release && cargo run --release
RUN cp target/release/nu /usr/local/bin
ENTRYPOINT ["nu"]