gliderlabs / gliderlabs/docker-alpine

wget doesn't work with OpenSSL in 3.6. LibreSSL does work

Open
#423 4 comments 10 reactions 0 assignees View on GitHub
Dominant language
Shell
Stars
5.7k
Forks
530
PR merge metrics
No merged PRs in 30d

Description

```
$ docker run alpine:3.6 sh -c 'apk --no-cache add openssl; wget -O- https://alpinelinux.org'
fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
(1/3) Installing libcrypto1.0 (1.0.2o-r0)
(2/3) Installing libssl1.0 (1.0.2o-r0)
(3/3) Installing openssl (1.0.2o-r0)
Executing busybox-1.26.2-r11.trigger
OK: 7 MiB in 16 packages
Connecting to alpinelinux.org (88.159.20.184:443)
ssl_client: alpinelinux.org: TLS connect failed
wget: error getting response: Connection reset by peer
```

```
$ docker run alpine:3.6 sh -c 'apk --no-cache add libressl; wget -O- https://alpinelinux.org'
fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
(1/1) Installing libressl (2.5.5-r2)
Executing busybox-1.26.2-r11.trigger
OK: 5 MiB in 14 packages
Connecting to alpinelinux.org (88.159.20.184:443)
- 100% |*******************************| 7989 0:00:00 ETA

...
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.