-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile_63
39 lines (35 loc) · 976 Bytes
/
Dockerfile_63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM rust:1.63-buster
ARG http_proxy
ENV http_proxy=$http_proxy
ENV https_proxy=$http_proxy
ENV HTTP_PROXY=$http_proxy
ENV HTTPS_PROXY=$http_proxy
RUN echo Acquire::http::Proxy "${http_proxy}"; > /etc/apt/apt.conf.d/70debconf
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
eatmydata \
&& eatmydata apt-get -y dist-upgrade \
&& eatmydata apt-get install --no-install-recommends -y \
build-essential \
bash \
ca-certificates \
clang \
curl \
hunspell \
libclang-dev \
libssl-dev \
llvm \
pkg-config \
syslog-ng \
sudo \
&& eatmydata apt -y autoremove \
&& eatmydata apt clean \
&& rm -rf /var/lib/apt/lists/*
ARG UID
RUN useradd -m -u $UID satoshi
USER satoshi
WORKDIR /home/satoshi
RUN rustup component add clippy-preview \
&& rustup component add rustfmt
RUN rustup target add wasm32-unknown-unknown
RUN rustup target add wasm32-wasi