-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.dev
More file actions
79 lines (71 loc) · 3.27 KB
/
Dockerfile.dev
File metadata and controls
79 lines (71 loc) · 3.27 KB
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
# daemon runs in the background
# run something like tail /var/log/unibitxd/current to see the status
# be sure to run with volumes, ie:
# docker run -v $(pwd)/unibitxd:/var/lib/unibitxd -v $(pwd)/wallet:/home/unibitx --rm -ti unibitx:latest
FROM ubuntu:16.04
ADD https://github.com/just-containers/s6-overlay/releases/download/v1.21.2.2/s6-overlay-amd64.tar.gz /tmp/
RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C /
ADD https://github.com/just-containers/socklog-overlay/releases/download/v2.1.0-0/socklog-overlay-amd64.tar.gz /tmp/
RUN tar xzf /tmp/socklog-overlay-amd64.tar.gz -C /
COPY . /src/turtlecoin
# install build dependencies
# checkout the latest tag
# build and install
RUN apt-get update && \
apt-get install -y \
build-essential \
python-dev \
gcc-4.9 \
g++-4.9 \
git cmake \
libboost1.58-all-dev && \
cd /src/unibitx && \
mkdir build && \
cd build && \
cmake -DCMAKE_CXX_FLAGS="-g0 -Os -fPIC -std=gnu++11" .. && \
make -j$(nproc) && \
mkdir -p /usr/local/bin && \
cp src/UniBitXd /usr/local/bin/UniBitXd && \
cp src/walletd /usr/local/bin/walletd && \
cp src/uniwallet /usr/local/bin/uniwallet && \
cp src/miner /usr/local/bin/miner && \
strip /usr/local/bin/UniBitXd && \
strip /usr/local/bin/walletd && \
strip /usr/local/bin/uniwallet && \
strip /usr/local/bin/miner && \
cd / && \
rm -rf /src/unibitx && \
apt-get remove -y build-essential python-dev gcc-4.9 g++-4.9 git cmake libboost1.58-all-dev && \
apt-get autoremove -y && \
apt-get install -y \
libboost-system1.58.0 \
libboost-filesystem1.58.0 \
libboost-thread1.58.0 \
libboost-date-time1.58.0 \
libboost-chrono1.58.0 \
libboost-regex1.58.0 \
libboost-serialization1.58.0 \
libboost-program-options1.58.0 \
libicu55
# setup the unibitxd service
RUN useradd -r -s /usr/sbin/nologin -m -d /var/lib/unibitxd unibitxd && \
useradd -s /bin/bash -m -d /home/unibitx unibitx && \
mkdir -p /etc/services.d/unibitxd/log && \
mkdir -p /var/log/unibitxd && \
echo "#!/usr/bin/execlineb" > /etc/services.d/unibitxd/run && \
echo "fdmove -c 2 1" >> /etc/services.d/unibitxd/run && \
echo "cd /var/lib/unibitxd" >> /etc/services.d/unibitxd/run && \
echo "export HOME /var/lib/unibitxd" >> /etc/services.d/unibitxd/run && \
echo "s6-setuidgid unibitxd /usr/local/bin/UniBitXd" >> /etc/services.d/unibitxd/run && \
chmod +x /etc/services.d/unibitxd/run && \
chown nobody:nogroup /var/log/unibitxd && \
echo "#!/usr/bin/execlineb" > /etc/services.d/unibitxd/log/run && \
echo "s6-setuidgid nobody" >> /etc/services.d/unibitxd/log/run && \
echo "s6-log -bp -- n20 s1000000 /var/log/unibitxd" >> /etc/services.d/unibitxd/log/run && \
chmod +x /etc/services.d/unibitxd/log/run && \
echo "/var/lib/unibitxd true unibitxd 0644 0755" > /etc/fix-attrs.d/unibitxd-home && \
echo "/home/unibitx true unibitx 0644 0755" > /etc/fix-attrs.d/unibitx-home && \
echo "/var/log/unibitxd true nobody 0644 0755" > /etc/fix-attrs.d/unibitxd-logs
VOLUME ["/var/lib/unibitxd", "/home/unibitx","/var/log/unibitxd"]
ENTRYPOINT ["/init"]
CMD ["/usr/bin/execlineb", "-P", "-c", "emptyenv cd /home/unibitx export HOME /home/turtlecoin s6-setuidgid unibitx /bin/bash"]