You've already forked metrics-tutorial
mirror of
https://github.com/zerotier/metrics-tutorial.git
synced 2026-05-22 16:29:19 -07:00
9 lines
172 B
Docker
9 lines
172 B
Docker
FROM debian:stable
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install curl nginx -y
|
|
RUN curl -s https://install.zerotier.com | bash
|
|
COPY ./webhost-init.sh /
|
|
|
|
CMD ["/webhost-init.sh"]
|