Skip to content

Commit bac4102

Browse files
committed
Initial commit
0 parents  commit bac4102

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM debian:bullseye-slim
2+
3+
RUN adduser --disabled-password --gecos "" --no-create-home --uid 1000 harmony
4+
5+
RUN apt-get update -y && apt-get install wget curl procps net-tools htop -y
6+
RUN wget --no-check-certificate https://github.com/harmony-one/harmony/releases/download/v4.3.1/harmony && chmod +x harmony && mv harmony /usr/local/bin/harmony
7+
8+
RUN mkdir -p /home/harmony
9+
RUN chown -R harmony:harmony /home/harmony
10+
11+
USER harmony
12+
13+
ENTRYPOINT ["harmony"]

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# harmony-docker
2+
3+
Repo that contains Dockerfile for Harmony One

0 commit comments

Comments
 (0)