-
Notifications
You must be signed in to change notification settings - Fork 163
Closed
Labels
RequestRequest for image modification or featureRequest for image modification or feature
Description
Hello!
I have 3 suggestions how we can improve this image.
Here:
https://github.com/docker-library/haproxy/blob/master/1.8/alpine/Dockerfile#L1
replace
FROM alpine:3.6
with
FROM alpine:3.7
We can update packages before installing HAProxy. They will not break something because of they are from same release (3.6 or 3.7), usually it's just bugfixes to software.
Before
https://github.com/docker-library/haproxy/blob/master/1.8/alpine/Dockerfile#L14
add
&& apk upgrade --no-cache \
Also we can replace openssl to libressl
https://github.com/docker-library/haproxy/blob/master/1.8/alpine/Dockerfile#L20-L21
replace
openssl \
openssl-dev \
with
libressl \
libressl-dev \
Metadata
Metadata
Assignees
Labels
RequestRequest for image modification or featureRequest for image modification or feature