Ensure successful linking as part of docker image build

This commit is contained in:
Tristan 2022-06-07 01:47:05 +01:00
parent cfa0866972
commit 60b21d9f39
No known key found for this signature in database
GPG Key ID: BDDFC4A0651ACDE4
1 changed files with 3 additions and 1 deletions

View File

@ -38,6 +38,8 @@ RUN apt -q update && \
apt -qq -y --purge autoremove && \
apt -qq -y clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/cache/* /var/log/* && \
groupadd "haproxy" && useradd -g "haproxy" "haproxy"
groupadd "haproxy" && useradd -g "haproxy" "haproxy" && \
/opt/quictls/bin/openssl version && \
/usr/local/sbin/haproxy -vv
CMD [ "/usr/local/sbin/haproxy", "-W", "-db", "-f", "/usr/local/etc/haproxy/haproxy.cfg" ]