mirror of
https://github.com/snail007/goproxy
synced 2024-11-17 21:25:32 +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"]
|