handbrake / Dockerfile
Illumotion's picture
Update Dockerfile
e978090 verified
raw
history blame contribute delete
No virus
400 Bytes
FROM ghcr.io/tailscale/tailscale
USER root
COPY config.json /etc/xray/config.json
RUN apk update \
&& apk add --no-cache ca-certificates busybox \
&& update-ca-certificates \
&& busybox wget https://github.com/XTLS/Xray-core/releases/latest/download/Xray-linux-64.zip \
&& busybox mkdir -p /var/log/v2ray \
&& busybox unzip Xray-linux-64.zip
ENTRYPOINT ["./xray", "-c", "/etc/xray/config.json"]