๐Ÿ“ฆ rust-lang / rust-playpen

๐Ÿ“„ build.sh ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#!/bin/sh

set -ex

for channel in stable beta nightly; do
    docker build \
        --no-cache \
        --force-rm \
        --pull \
        --rm \
        --tag rust-playpen-$channel \
        --file docker/Dockerfile-$channel \
        docker
done