From 33e436c328cf21b36b0e835f4b9563fef055c3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lo=C3=AFs?= <elois@ifee.fr> Date: Sun, 11 Nov 2018 20:26:49 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51c1307..731dc7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,14 @@ -FROM jibbow/rust-wasm32-unknown-unknown +FROM rust LABEL maintainer="Elois Librelois" LABEL version="0.1" LABEL description="CI for rust-wasm projects" +# add target wasm32-unknown-unknown +RUN rustup target add wasm32-unknown-unknown + # install wasm-pack -RUN cargo +nightly install wasm-pack \ No newline at end of file +RUN cargo install wasm-pack + +# install wasm-gc +RUN cargo install wasm-gc \ No newline at end of file -- GitLab