-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
68 lines (53 loc) · 2.16 KB
/
Dockerfile
File metadata and controls
68 lines (53 loc) · 2.16 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
FROM ubuntu:18.04
MAINTAINER Yuki Watanabe <watanabe@future-needs.com>
ARG USER_ID
ARG GROUP_ID
ENV HOME /bitcoincash
# add user with specified (or default) user/group ids
ENV USER_ID ${USER_ID:-1000}
ENV GROUP_ID ${GROUP_ID:-1000}
# add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added
RUN groupadd -g ${GROUP_ID} bitcoincash \
&& useradd -u ${USER_ID} -g bitcoincash -s /bin/bash -m -d /bitcoincash bitcoincash
ARG BITCOINCASH_VERSION=${BITCOINCASH_VERSION:-0.21.1}
ENV BITCOIN_PREFIX=/opt/bitcoincash-${BITCOINCASH_VERSION}
ENV BITCOIN_DATA=/bitcoincash/.bitcoincash
ENV PATH=/bitcoincash/bitcoin-abc-${BITCOINCASH_VERSION}/bin:$PATH
RUN set -xe \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
unzip \
curl \
&& curl -SLO https://github.com/Bitcoin-ABC/bitcoin-abc/releases/download/v${BITCOINCASH_VERSION}/bitcoin-abc-${BITCOINCASH_VERSION}-x86_64-linux-gnu.tar.gz \
&& tar -xzf *.tar.gz -C /bitcoincash \
&& rm *.tar.gz \
&& apt-get purge -y \
ca-certificates \
curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# grab gosu for easy step-down from root
ARG GOSU_VERSION=${GOSU_VERSION:-1.11}
RUN set -xe \
&& apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
wget \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc \
&& chmod +x /usr/local/bin/gosu \
&& gosu nobody true \
&& apt-get purge -y \
ca-certificates \
wget \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD ./bin /usr/local/bin
VOLUME ["/bitcoincash"]
EXPOSE 8332 8333 18332 18333
WORKDIR /bitcoincash
COPY docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["bch_oneshot"]