diff --git a/docker/Dockerfile b/docker/Dockerfile index 1ae078b..20f586a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,6 +5,13 @@ COPY websockify-*.tar.gz / RUN python3 -m pip install websockify-*.tar.gz RUN rm -rf /websockify-* /root/.cache +# Install Tailscale +RUN apt-get update && \ + apt-get install -y curl ca-certificates && \ + curl -fsSL https://tailscale.com/install.sh | sh && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + VOLUME /data EXPOSE 80 diff --git a/docker/websockify-0.13.0.tar.gz b/docker/websockify-0.13.0.tar.gz new file mode 100644 index 0000000..cf163de Binary files /dev/null and b/docker/websockify-0.13.0.tar.gz differ