mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 05:59:24 +00:00
27 lines
482 B
Docker
27 lines
482 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
g++ \
|
|
make \
|
|
file \
|
|
curl \
|
|
ca-certificates \
|
|
python2.7 \
|
|
git \
|
|
cmake \
|
|
libssl-dev \
|
|
sudo \
|
|
xz-utils \
|
|
pkg-config
|
|
|
|
COPY scripts/dumb-init.sh /scripts/
|
|
RUN sh /scripts/dumb-init.sh
|
|
|
|
COPY scripts/sccache.sh /scripts/
|
|
RUN sh /scripts/sccache.sh
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
|
|
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu
|
|
ENV RUST_CHECK_TARGET check-aux
|