This commit is contained in:
2023-05-01 17:23:12 +02:00
parent f45a9ae740
commit a48efdc367

View File

@@ -72,6 +72,7 @@ RUN set -eux; \
wget -O haproxy.tar.gz "$HAPROXY_URL"; \ wget -O haproxy.tar.gz "$HAPROXY_URL"; \
echo "$HAPROXY_SHA256 *haproxy.tar.gz" | sha256sum -c; \ echo "$HAPROXY_SHA256 *haproxy.tar.gz" | sha256sum -c; \
mkdir -p /usr/src/haproxy; \ mkdir -p /usr/src/haproxy; \
mkdir -p /var/lib/haproxy; \
tar -xzf haproxy.tar.gz -C /usr/src/haproxy --strip-components=1; \ tar -xzf haproxy.tar.gz -C /usr/src/haproxy --strip-components=1; \
rm haproxy.tar.gz; \ rm haproxy.tar.gz; \
\ \