9 lines
183 B
Docker
9 lines
183 B
Docker
FROM sigp/lighthouse:v3.2.1-modern
|
|
|
|
RUN apt-get update; apt-get install bash netcat curl less jq -y;
|
|
|
|
WORKDIR /root/
|
|
ADD start-lighthouse.sh .
|
|
|
|
ENTRYPOINT [ "./start-lighthouse.sh" ]
|