This repository was archived by the owner on Nov 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,11 @@ deb:
205205 script :
206206 - *push_to_docker_hub
207207
208+ lz4 :
209+ << : *docker_build
210+ script :
211+ - *push_to_docker_hub
212+
208213# special case as version tags are introduced
209214kubetools :
210215 << : *docker_build
@@ -273,15 +278,15 @@ kubetools-helm3:
273278 |
274279 | # build of kubetools image
275280 |
276- |
281+ |
277282 | HELM_VERSION = $HELM_VERSION
278283 | HELMFILE_VERSION = $HELMFILE_VERSION
279284 | HELM_DIFF_PLUGIN_VERSION = $HELM_DIFF_PLUGIN_VERSION
280285 | HELM_SECRETS_VERSION = $HELM_SECRETS_VERSION
281286 | KUBE_VERSION = $KUBE_VERSION
282287 | VALS_VERSION= $VALS_VERSION
283288 | VAULT_VERSION= $VAULT_VERSION
284- |
289+ |
285290 EOT
286291 - buildah bud
287292 --format=docker
Original file line number Diff line number Diff line change 1+ FROM docker.io/library/alpine:3.16.0
2+
3+ ARG VCS_REF=master
4+ ARG BUILD_DATE=""
5+ ARG REGISTRY_PATH=docker.io/paritytech
6+
7+ # metadata
8+ LABEL io.parity.image.authors=
"[email protected] " \
9+ io.parity.image.vendor="Parity Technologies" \
10+ io.parity.image.title="${REGISTRY_PATH}/lz4" \
11+ io.parity.image.description="lz4 wget;" \
12+ io.parity.image.source="https://github.com/paritytech/scripts/blob/${VCS_REF}/\
13+ dockerfiles/lz4/Dockerfile" \
14+ io.parity.image.documentation="https://github.com/paritytech/scripts/blob/${VCS_REF}/\
15+ dockerfiles/lz4/README.md" \
16+ io.parity.image.revision="${VCS_REF}" \
17+ io.parity.image.created="${BUILD_DATE}"
18+
19+ RUN apk add --no-cache lz4 wget
Original file line number Diff line number Diff line change 1+ Image containing lz4 and wget binaries.
You can’t perform that action at this time.
0 commit comments