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