From 25bae304391a7d2c7d09222da4d4e90958db4803 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89lo=C3=AFs?= <elois@ifee.fr>
Date: Sat, 9 Mar 2019 18:21:05 +0000
Subject: [PATCH] base on debian jessie (oldstable)

---
 Dockerfile | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 51b2b9d..9665478 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,18 @@
-FROM rust
+FROM debian:jessie
 MAINTAINER elois <elois@ifee.fr>
-LABEL version="1.33.0"
+LABEL version="1.33.2"
 LABEL description="CI for DURS project (Divende Universel RuSt)"
 
 RUN apt-get update && \
    apt-get install -y build-essential curl python-pip pkg-config libssl-dev sudo tar zip && \
    apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+   
+# install rustup
+RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
+
+# rustup directory
+ENV PATH /root/.cargo/bin:$PATH
+
 
 # Install fmt and clippy
 RUN rustup component add rustfmt-preview
-- 
GitLab