Skip to content

Commit

Permalink
added helpers for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GundamDweeb committed May 17, 2022
1 parent 784cccb commit b4e5bb9
Show file tree
Hide file tree
Showing 9 changed files with 1,833 additions and 3 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM --platform=linux/x86_64 ubuntu:20.04

ARG DEBIAN_FRONTEND=noninteractive

ENV ARGS=""

RUN apt update \
&& apt install -y sudo curl postgresql \
&& curl -fsSL https://deb.nodesource.com/setup_16.x | sudo bash - \
&& sudo apt install -y nodejs

RUN curl -OL https://github.com/LimeChain/matchstick/releases/download/0.5.0-rc5/binary-linux-20 \
&& chmod a+x binary-linux-20

RUN mkdir matchstick
WORKDIR /matchstick

CMD ../binary-linux-20 ${ARGS}
Loading

0 comments on commit b4e5bb9

Please sign in to comment.