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

Commit 9c67701

Browse files
authored
Add new Dockerfile with lz4 and wget (#425)
1 parent cc750ff commit 9c67701

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.gitlab-ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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
209214
kubetools:
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

dockerfiles/lz4/Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

dockerfiles/lz4/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Image containing lz4 and wget binaries.

0 commit comments

Comments
 (0)