-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
117 lines (103 loc) · 3.23 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Gravium (GRV) Masternode - Dockerfile (06-2018)
#
# The Dockerfile will install all required stuff to run a Gravium (GRV) Masternode.
# Gravium Repo : https://github.com/Gravium
#
# To build a docker image for grv-masternode from the Dockerfile the gravium.conf is also needed.
# See BUILD_README.md for further steps.
# Use an official Ubuntu runtime as a parent image
FROM ubuntu:16.04
LABEL maintainer="David B. (dalijolijo)"
LABEL version="0.1"
# Make ports available to the world outside this container
# DefaultPort = 11010
# RPCPort = 11000
# TORPort
EXPOSE 11000 11010 9050
USER root
# Change sh to bash
SHELL ["/bin/bash", "-c"]
# Define environment variable
ENV GRVPWD "gravium"
RUN echo '*** Gravium (GRV) Masternode ***'
#
# Creating gravium user
#
RUN echo '*** Creating gravium user ***' && \
adduser --disabled-password --gecos "" gravium && \
usermod -a -G sudo,gravium gravium && \
echo gravium:$GRVPWD | chpasswd
#
# Running updates and installing required packages
#
#
RUN echo '*** Running updates and installing required packages ***' && \
apt-get update -y && \
apt-get dist-upgrade -y && \
apt-get install -y apt-utils \
autoconf \
automake \
autotools-dev \
bsdmainutils \
build-essential \
curl \
git \
libboost-all-dev \
libevent-dev \
libminiupnpc-dev \
libssl-dev \
libtool \
libzmq5-dev \
pkg-config \
python-virtualenv \
software-properties-common \
sudo \
supervisor \
vim \
wget && \
add-apt-repository -y ppa:bitcoin/bitcoin && \
apt-get update -y && \
apt-get upgrade -y && \
apt-get install -y libdb4.8-dev \
libdb4.8++-dev
#
# Cloning and Compiling Gravium Wallet
#
RUN echo '*** Cloning and Compiling Gravium Wallet ***' && \
cd && \
echo "Execute a git clone of Gravium. Please wait..." && \
git clone https://github.com/Gravium/gravium.git && \
cd gravium && \
./autogen.sh && \
./configure --disable-dependency-tracking --enable-tests=no --without-gui && \
make && \
cd && \
cd gravium/src && \
strip graviumd && \
cp graviumd /usr/local/bin && \
strip gravium-cli && \
cp gravium-cli /usr/local/bin && \
strip gravium-tx && \
cp gravium-tx /usr/local/bin && \
chmod 775 /usr/local/bin/graviumd* && \
cd && \
rm -rf gravium
#
# Copy Supervisor Configuration and gravium.conf
#
RUN echo '*** Copy Supervisor Configuration and gravium.conf ***'
COPY *.sv.conf /etc/supervisor/conf.d/
COPY gravium.conf /tmp
#
# Logging outside docker container
#
VOLUME /var/log
#
# Start script
#
RUN echo '*** Copy start script ***'
COPY start.sh /usr/local/bin/start.sh
RUN rm -f /var/log/access.log && mkfifo -m 0666 /var/log/access.log && \
chmod 755 /usr/local/bin/*
ENV TERM linux
CMD ["/usr/local/bin/start.sh"]