Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Commit 6f1f30c

Browse files
committed
20211123175505
1 parent 404af72 commit 6f1f30c

7 files changed

Lines changed: 12 additions & 144 deletions

.github/workflows/main.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

haproxy_alpine_builder.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM quay.io/icecodenew/builder_image_x86_64-linux:alpine AS step1_lua54
22
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
33
## curl -sSL "https://www.lua.org/download.html" | tr -d '\r\n\t' | grep -Po '(?<=lua-)[0-9]\.[0-9]\.[0-9](?=\.tar\.gz)' | sort -Vr | head -n 1
4-
ARG lua_version=5.4.0
4+
ARG lua_version=5.4.3
55
WORKDIR /build_root
66
RUN source '/root/.bashrc' \
77
&& curl -sS "https://www.lua.org/ftp/lua-${lua_version}.tar.gz" | bsdtar --no-xattrs -xf-;
@@ -14,7 +14,7 @@ FROM step1_lua54 AS haproxy_builder
1414
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1515
ARG haproxy_branch=2.4
1616
## curl -sSL "https://git.haproxy.org/?p=haproxy-${haproxy_branch}.git;a=commit;h=refs/heads/master" | tr -d '\r\n\t' | grep -Po '(?<=<td>commit<\/td><td class="sha1">)[a-zA-Z0-9]+(?=<\/td>)'
17-
ARG haproxy_latest_commit_hash='6cbbecf09734aeb5fa8bb88f36f06a6f6d35e813'
17+
ARG haproxy_latest_commit_hash=eba18d5fdd6b04bb8d9a48d0558ed10d9afd1c37
1818
WORKDIR /build_root
1919
RUN source '/root/.bashrc' \
2020
&& mkdir "haproxy-${haproxy_branch}" \
@@ -34,9 +34,9 @@ RUN source '/root/.bashrc' \
3434
FROM quay.io/icecodenew/alpine:latest AS haproxy-alpine-collection
3535
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
3636
# date +%s
37-
ARG cachebust=1604512266
37+
ARG cachebust=1637690108
3838
ARG haproxy_branch=2.4
39-
ARG haproxy_latest_tag_name=2.4.0
39+
ARG haproxy_latest_tag_name=2.4.8
4040
COPY --from=haproxy_builder \
4141
"/build_root/haproxy-${haproxy_branch}/haproxy" \
4242
"/build_root/haproxy-${haproxy_branch}/haproxy.ori" \

haproxy_debian_builder.Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM quay.io/icecodenew/builder_image_x86_64-linux:ubuntu AS step1_lua54
22
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
33
## curl -sSL "https://www.lua.org/download.html" | tr -d '\r\n\t' | grep -Po '(?<=lua-)[0-9]\.[0-9]\.[0-9](?=\.tar\.gz)' | sort -Vr | head -n 1
4-
ARG lua_version=5.4.0
4+
ARG lua_version=5.4.3
55
WORKDIR /build_root
66
RUN source '/root/.bashrc' \
77
&& curl -sS "https://www.lua.org/ftp/lua-${lua_version}.tar.gz" | bsdtar --no-xattrs -xf-;
@@ -15,7 +15,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1515
# https://api.github.com/repos/jemalloc/jemalloc/releases/latest
1616
ARG jemalloc_latest_tag_name=5.2.1
1717
# https://api.github.com/repos/jemalloc/jemalloc/commits?per_page=1
18-
ARG jemalloc_latest_commit_hash='f6699803e2772de2a4eb253d5b55f00c3842a950'
18+
ARG jemalloc_latest_commit_hash=cdabe908d05ba68da248edf1dd9f522af1ec6024
1919
# WORKDIR /build_root
2020
# RUN source '/root/.bashrc' \
2121
# && var_icn_download="https://github.com/jemalloc/jemalloc/releases/download/${jemalloc_latest_tag_name}/jemalloc-${jemalloc_latest_tag_name}.tar.bz2" \
@@ -35,8 +35,8 @@ FROM step3_jemalloc AS haproxy_builder
3535
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
3636
ARG haproxy_branch=2.4
3737
## curl -sSL "https://git.haproxy.org/?p=haproxy-${haproxy_branch}.git;a=commit;h=refs/heads/master" | tr -d '\r\n\t' | grep -Po '(?<=<td>commit<\/td><td class="sha1">)[a-zA-Z0-9]+(?=<\/td>)'
38-
ARG haproxy_latest_commit_hash='6cbbecf09734aeb5fa8bb88f36f06a6f6d35e813'
39-
ARG haproxy_latest_tag_name='2.4.0'
38+
ARG haproxy_latest_commit_hash=eba18d5fdd6b04bb8d9a48d0558ed10d9afd1c37
39+
ARG haproxy_latest_tag_name=2.4.8
4040
WORKDIR /build_root
4141
RUN source '/root/.bashrc' \
4242
&& mkdir "haproxy-${haproxy_branch}" \
@@ -58,9 +58,9 @@ RUN source '/root/.bashrc' \
5858
FROM quay.io/icecodenew/alpine:latest AS haproxy-alpine-collection
5959
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
6060
# date +%s
61-
ARG cachebust=1604512266
61+
ARG cachebust=1637690108
6262
ARG haproxy_branch=2.4
63-
ARG haproxy_latest_tag_name=2.4.0
63+
ARG haproxy_latest_tag_name=2.4.8
6464
ARG jemalloc_latest_tag_name=5.2.1
6565
COPY --from=step3_jemalloc "/build_root/jemalloc/jemalloc_${jemalloc_latest_tag_name}-dev-1_amd64.deb" "/build_root/haproxy-${haproxy_branch}/"
6666
COPY --from=haproxy_builder "/build_root/haproxy-${haproxy_branch}/haproxy_${haproxy_latest_tag_name}-1_amd64.deb" "/build_root/haproxy-${haproxy_branch}/haproxy.service" "/build_root/haproxy-${haproxy_branch}/"

release_haproxy_alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM quay.io/icecodenew/haproxy_static:alpine AS haproxy_uploader
33
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44
ARG haproxy_branch=2.4
5-
ARG haproxy_latest_tag_name=2.4.0
5+
ARG haproxy_latest_tag_name=2.4.8
66
COPY got_github_release.sh /tmp/got_github_release.sh
77
WORKDIR "/git/haproxy_static"
88
# import secret:

release_haproxy_debian.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM quay.io/icecodenew/haproxy_static:debian AS haproxy_uploader
33
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44
ARG haproxy_branch=2.4
5-
ARG haproxy_latest_tag_name=2.4.0
5+
ARG haproxy_latest_tag_name=2.4.8
66
ARG jemalloc_latest_tag_name='5.2.1'
77
COPY got_github_release.sh /tmp/got_github_release.sh
88
WORKDIR "/git/haproxy_static"

0 commit comments

Comments
 (0)