-
Notifications
You must be signed in to change notification settings - Fork 12
/
Dockerfile
50 lines (42 loc) · 1.47 KB
/
Dockerfile
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
39
40
41
42
43
44
45
46
47
48
49
50
FROM ubuntu:22.04
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
apt -yq update && \
apt -yqq install --no-install-recommends bc curl ca-certificates \
build-essential pkg-config libssl-dev libunwind-dev llvm-dev liblmdb-dev locales clang cmake \
git jq emacs vim
ENV HOME /home/sns
ENV WDIR ${HOME}
WORKDIR ${WDIR}
RUN locale-gen en_US.UTF-8 &&\
echo "export LANG=en_US.UTF-8 LANGUAGE=en_US.en LC_ALL=en_US.UTF-8" >> /home/sns/.bashrc
ARG RUST_VERSION=1.77.2
ENV RUSTUP_HOME=/opt/rustup \
CARGO_HOME=/opt/cargo \
PATH=/opt/cargo/bin:$PATH
RUN curl --fail https://sh.rustup.rs -sSf \
| sh -s -- -y --default-toolchain "${RUST_VERSION}-x86_64-unknown-linux-gnu" --no-modify-path && \
rustup default "${RUST_VERSION}-x86_64-unknown-linux-gnu" && \
rustup target add wasm32-unknown-unknown
# Install yq. We use it to read YAML file(s).
ARG YQ_VERSION=v4.34.1
RUN curl \
--location \
https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_386 \
--output /usr/bin/yq \
&& chmod +x /usr/bin/yq
RUN git clone https://github.com/dfinity/ic.git
ADD . ${WDIR}
RUN ./install.sh
ENV PATH=/home/sns/bin:$PATH
RUN mkdir -p /home/sns/.config/dfx
RUN echo '{ \n\
"local": { \n\
"bind": "0.0.0.0:8080", \n\
"type": "ephemeral", \n\
"replica": { \n\
"subnet_type": "system", \n\
"port": 8000 \n\
} \n\
} \n\
}' > /home/sns/.config/dfx/networks.json