-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (25 loc) · 618 Bytes
/
Dockerfile
File metadata and controls
30 lines (25 loc) · 618 Bytes
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
# SPDX-FileCopyrightText: © 2021 Alias Developers
# SPDX-License-Identifier: MIT
FROM alpine:3.14
MAINTAINER yves@alias.cash
RUN apk add \
bash \
bc \
curl \
dialog \
git \
mariadb-client \
ncurses \
nodejs \
npm \
mc \
tor
WORKDIR /opt/
ADD entrypoint.sh .
RUN git clone https://github.com/aliascash/alias-sh-rpc-ui.git \
&& mkdir /root/.aliaswallet \
&& cp /opt/alias-sh-rpc-ui/sample_config_daemon/alias.conf /root/.aliaswallet/
RUN git clone https://github.com/aliascash/aliwa-server.git \
&& cd aliwa-server \
&& npm install
ENTRYPOINT ["/opt/entrypoint.sh"]