Files

9 lines
172 B
Docker
Raw Permalink Normal View History

2023-09-08 14:25:03 -07:00
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 /
2023-09-08 14:25:03 -07:00
CMD ["/webhost-init.sh"]