Browse Source

Update Dockerfile

Add ca-certificates for runtime dependency

When you use shadowsocks/shadowsocks-libev with [v2ray-plugin](https://github.com/shadowsocks/v2ray-plugin), it may occurs `x509: certificate signed by unknown authority` error.
pull/2475/head
Kebin Liu 5 years ago
committed by GitHub
parent
commit
2f61bac4c0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. 1
      docker/alpine/Dockerfile

1
docker/alpine/Dockerfile

@ -35,6 +35,7 @@ RUN set -ex \
&& apk del .build-deps \
# Runtime dependencies setup
&& apk add --no-cache \
ca-certificates \
rng-tools \
$(scanelf --needed --nobanner /usr/bin/ss-* \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \

Loading…
Cancel
Save