๐Ÿ“ฆ rust-lang / rust-playpen

๐Ÿ“„ Dockerfile-nightly ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12FROM ubuntu:16.04

RUN apt-get update
RUN apt-get install -y --no-install-recommends \
      gcc libc6-dev curl file ca-certificates
COPY bin/compile.sh bin/evaluate.sh /usr/local/bin/
COPY install.sh /tmp/
RUN sh /tmp/install.sh nightly
USER nobody

WORKDIR /tmp