hf-v2 / Dockerfile
Chave's picture
Upload 2 files
35b6027 verified
raw
history blame contribute delete
No virus
253 Bytes
##
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" ]