10 lines
287 B
Docker
10 lines
287 B
Docker
FROM headscale/headscale:latest
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt-get clean
|
|
COPY prep.sh /usr/bin/local/
|
|
RUN /bin/bash /usr/bin/local/prep.sh
|
|
COPY start.sh /usr/bin/local/
|
|
RUN chmod +x /usr/bin/local/start.sh
|
|
CMD ["start.sh"] |