File size: 253 Bytes
35b6027
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
##

FROM alpine:latest

WORKDIR /root
COPY xf.sh /root/xf.sh

RUN set -ex \
    && apk add --no-cache tzdata openssl ca-certificates \
    && mkdir -p /etc/v2ray /usr/local/share/v2ray /var/log/v2ray \
    && chmod +x /root/xf.sh

CMD [ "/root/xf.sh" ]