Skip to content

Commit 71b35a6

Browse files
committed
Simplify Aleth's dockerfile
1 parent ee5a2bf commit 71b35a6

File tree

6 files changed

+22
-168
lines changed

6 files changed

+22
-168
lines changed

clients/aleth:develop/Dockerfile

Lines changed: 0 additions & 62 deletions
This file was deleted.

clients/aleth:develop/Dockerfile.develop

Lines changed: 0 additions & 46 deletions
This file was deleted.

clients/aleth:develop/aleth.py

Lines changed: 0 additions & 60 deletions
This file was deleted.

clients/aleth:nightly/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Multistage Dockerfile for the Aleth Ethereum node.
2+
# Build stage
3+
4+
# This can be run separately, as a standalone image,
5+
# to obtain a cache and save rebuilding all the time (during development)
6+
#
7+
# docker build --target builder -t aleth_base
8+
#
9+
10+
FROM ethereum/aleth:nightly
11+
12+
# Genesis template
13+
ADD config.json /config.json
14+
15+
# Inject the startup script
16+
ADD aleth.sh /aleth.sh
17+
RUN chmod +x /aleth.sh
18+
19+
# Export the usual networking ports to allow outside access to the node
20+
EXPOSE 8545 30303
21+
22+
ENTRYPOINT ["/aleth.sh"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)