-
Notifications
You must be signed in to change notification settings - Fork 94
/
dockerfile
58 lines (46 loc) · 2.4 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
# This file is part of Polkadex.
#
# Copyright (c) 2021-2023 Polkadex oü.
# SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
FROM bitnami/git:latest AS builder
RUN apt-get update && apt-get install --assume-yes curl build-essential cmake clang jq protobuf-compiler ca-certificates
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
export PATH="$PATH:$HOME/.cargo/bin" && \
rustup toolchain install nightly && \
rustup target add wasm32-unknown-unknown --toolchain nightly && \
rustup default nightly && \
git clone https://github.com/Polkadex-Substrate/Polkadex -b mainnet-release && \
cd Polkadex && \
git checkout $(git describe --tags --abbrev=0) && \
cargo build --release
# /\-Build Stage | Final Stage-\/
FROM docker.io/library/ubuntu:20.04
COPY --from=builder /Polkadex/target/release/polkadex-node /usr/local/bin
RUN apt-get update && apt-get install --assume-yes curl ca-certificates
RUN useradd -m -u 1000 -U -s /bin/sh -d /polkadex-node polkadex-node && \
mkdir -p /polkadex-node/.local/share && \
mkdir /data && \
chown -R polkadex-node:polkadex-node /data && \
ln -s /data /polkadex-node/.local/share/polkadex-node && \
rm -rf /usr/bin /usr/sbin
COPY --from=builder /Polkadex/extras/customSpecRaw.json /data
USER polkadex-node
EXPOSE 30333 9933 9944
VOLUME ["/data"]
EXPOSE 30333 9933 9944
ENTRYPOINT ["/usr/local/bin/polkadex-node"]
# You should be able to run a validator using this docker image in a bash environmment with the following command:
# docker run <docker_image_name> --chain /data/customSpecRaw.json $(curl -s https://raw.githubusercontent.com/Polkadex-Substrate/Polkadex/main/docs/run-a-validator.md | grep -o -m 1 -E "\-\-bootnodes \S*") --validator --name "Validator-Name"