Skip to content

Commit

Permalink
c-lightningのDockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragon-taro committed Apr 4, 2019
1 parent a53c2eb commit 5197724
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions c-lightning/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM centos:latest

RUN yum update
RUN yum install -y \
autoconf automake build-essential git libtool libgmp-devel \
sqlite-devel python net-tools zlib1g-dev libsodium-dev

# install python3
RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm \
&& yum install -y python36u python36u-devel python36u-libs
&& ln -s /usr/bin/python3.6 /usr/bin/python3

# build
RUN ./configure && make

0 comments on commit 5197724

Please sign in to comment.