File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -62,25 +62,15 @@ ENV ARGS=""
62
62
RUN apt update
63
63
RUN apt install -y nodejs
64
64
RUN apt install -y npm
65
- RUN apt install -y cmake
66
- RUN apt install -y git
67
65
COPY ./ ./
68
- RUN mkdir ./tests/.tools
69
- WORKDIR ./tests/.tools
70
- RUN git clone --recursive https://github.com/WebAssembly/wabt
71
- WORKDIR wabt
72
- RUN git submodule update --init
73
- RUN mkdir build
74
- WORKDIR build
75
- RUN cmake ..
76
- RUN cmake --build .
77
- WORKDIR /
78
66
RUN npm run codegen
79
67
RUN npm run build
80
68
RUN apt install -y postgresql
81
69
RUN apt install -y curl
82
- RUN curl -OL ${ url }
70
+ RUN apt-get update && apt-get -y install cmake protobuf-compiler
71
+ RUN curl -OL https://github.com/LimeChain/matchstick/releases/download/${ version || "0.2.1a" } /binary-linux-20
83
72
RUN mv binary-linux-20 matchstick
73
+ RUN chmod a+x matchstick
84
74
CMD ./matchstick \${ARGS}`
85
75
86
76
let dir = 'tests/.docker'
You can’t perform that action at this time.
0 commit comments