-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
784cccb
commit b4e5bb9
Showing
9 changed files
with
1,833 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
Oops, something went wrong.