-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathDockerfile
77 lines (66 loc) · 2.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
ARG K_COMMIT
FROM runtimeverificationinc/kframework-k:ubuntu-bionic-${K_COMMIT}
RUN apt update \
&& apt upgrade --yes \
&& apt install --yes \
autoconf \
build-essential \
cmake \
curl \
flex \
gcc \
libcrypto++-dev \
libffi-dev \
libmpfr-dev \
libprocps-dev \
libprotobuf-dev \
libsecp256k1-dev \
libssl-dev \
libtool \
make \
maven \
netcat \
opam \
openjdk-8-jdk \
pkg-config \
protobuf-compiler \
python3 \
python3-pip \
zlib1g-dev
RUN git clone 'https://github.com/z3prover/z3' --branch=z3-4.8.11 \
&& cd z3 \
&& python scripts/mk_make.py \
&& cd build \
&& make -j8 \
&& make install \
&& cd ../.. \
&& rm -rf z3
RUN curl -sSL https://get.haskellstack.org/ | sh
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get update \
&& apt-get upgrade --yes \
&& apt-get install --yes nodejs
RUN pip3 install dataclasses dacite
ARG USER_ID=1000
ARG GROUP_ID=1000
RUN groupadd --gid $GROUP_ID user \
&& useradd --create-home --uid $USER_ID --shell /bin/sh --gid user user
USER $USER_ID:$GROUP_ID
RUN curl -L https://github.com/github/hub/releases/download/v2.14.0/hub-linux-amd64-2.14.0.tgz -o /home/user/hub.tgz
RUN cd /home/user && tar xzf hub.tgz
ENV PATH=/home/user/hub-linux-amd64-2.14.0/bin:$PATH
RUN opam init --yes \
&& opam install --yes zarith hex uuidm rlp yojson cryptokit ocaml-protoc
ENV LC_ALL=C.UTF-8
ADD --chown=user:user iele-assemble/stack.yaml iele-assemble/iele-assemble.cabal /home/user/.tmp-haskell/
RUN cd /home/user/.tmp-haskell \
&& stack build --only-snapshot
RUN git config --global user.email '[email protected]' \
&& git config --global user.name 'RV Jenkins' \
&& mkdir -p ~/.ssh \
&& echo 'host github.com' > ~/.ssh/config \
&& echo ' hostname github.com' >> ~/.ssh/config \
&& echo ' user git' >> ~/.ssh/config \
&& echo ' identityagent SSH_AUTH_SOCK' >> ~/.ssh/config \
&& echo ' stricthostkeychecking accept-new' >> ~/.ssh/config \
&& chmod go-rwx -R ~/.ssh