mirror of
https://github.com/snail007/goproxy.git
synced 2026-04-03 03:08:36 +00:00
7 lines
163 B
Docker
7 lines
163 B
Docker
# alpine, busybox, scratch
|
|
FROM scratch
|
|
COPY proxy /
|
|
COPY Shanghai /etc/localtime/
|
|
COPY ca-certificates.crt /etc/ssl/certs/
|
|
ENTRYPOINT ["/proxy"]
|
|
CMD ["--version"] |