From 0260667f7a299b638a14c40b265d463790645a7f Mon Sep 17 00:00:00 2001 From: Miroslav Prasil Date: Tue, 12 Jun 2018 23:48:18 +0100 Subject: [PATCH] Use proper toolchain in Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1b454155..9f8d626b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN git config --global url."https://github.com/".insteadOf ssh://git@github.com ########################## BUILD IMAGE ########################## # We need to use the Rust build image, because # we need the Rust compiler and Cargo tooling -FROM rustlang/rust:nightly as build +FROM rust as build # Using bundled SQLite, no need to install it # RUN apt-get update && apt-get install -y\ @@ -46,6 +46,7 @@ WORKDIR /app # Copies over *only* your manifests and vendored dependencies COPY ./Cargo.* ./ COPY ./libs ./libs +COPY ./rust-toolchain ./rust-toolchain # Builds your dependencies and removes the # dummy project, except the target folder