7 lines
163 B
Docker
Raw Permalink Normal View History

2021-05-11 13:40:18 +08:00
# alpine, busybox, scratch
FROM scratch
COPY proxy /
COPY Shanghai /etc/localtime/
COPY ca-certificates.crt /etc/ssl/certs/
ENTRYPOINT ["/proxy"]
CMD ["--version"]