From 520f4e62bd7cc2a307fd89a7616d58e6a153d067 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Sat, 7 Apr 2018 14:20:41 +0200 Subject: [PATCH] Use latest Rust in backend Docker image. The `pest` crate (a dependency of `comrak`) requires at least Rust 1.23 (https://github.com/pest-parser/pest#usage). Currently we test crates.io on Travis using latest stable Rust (and newer). I don't think there's any reason to pin the Docker image to a specific (and outdated) Rust version. --- backend.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.Dockerfile b/backend.Dockerfile index 14dfe75e37d..1d278219dc8 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.20-stretch +FROM rust:latest RUN apt-get update \ && apt-get install -y postgresql cmake \