File size: 400 Bytes
e978090
27ceba9
4b0a758
 
 
0342ca3
4b0a758
58de792
90d9e5e
 
1
2
3
4
5
6
7
8
9
10
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"]