11 lines
245 B
Docker
11 lines
245 B
Docker
FROM catthehacker/ubuntu:rust-latest
|
|
|
|
# download static bin
|
|
ADD https://get.nexte.st/latest/linux cargo-nextest.tar.gz
|
|
|
|
# unpack and install
|
|
RUN tar xzf cargo-nextest.tar.gz -C ${CARGO_HOME:-~/.cargo}/bin
|
|
|
|
# clean up
|
|
RUN rm cargo-nextest.tar.gz
|