Fix and update Docker image

This commit is contained in:
Quentin Le Sceller
2018-11-30 10:35:24 -05:00
parent 93a4653e36
commit 798565d02e
3 changed files with 12 additions and 12 deletions
+8 -8
View File
@@ -1,18 +1,18 @@
# Multistage docker build, requires docker 17.05
# builder stage
FROM rust:1.29.0 as builder
FROM rust:1.30.1 as builder
RUN set -ex && \
apt-get update && \
apt-get --no-install-recommends --yes install \
clang \
libclang-dev \
llvm-dev \
libncurses5 \
libncursesw5 \
cmake \
git
clang \
libclang-dev \
llvm-dev \
libncurses5 \
libncursesw5 \
cmake \
git
WORKDIR /usr/src/grin