Skip to content

Commit 67a3867

Browse files
pkg/*: use automatic hashes
provided by linuxkit to avoid having to bump manually like crazy Signed-off-by: Christoph Ostarek <[email protected]>
1 parent 063a5fd commit 67a3867

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+315
-68
lines changed

pkg/acrn-kernel/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM lfedge/eve-alpine:745ae9066273c73b0fd879c4ba4ff626a8392d04 AS kernel-build
1+
ARG REL_HASH_LFEDGE_EVE_ALPINE
2+
3+
FROM ${REL_HASH_LFEDGE_EVE_ALPINE} AS kernel-build
24

35
ENV BUILD_PKGS \
46
argp-standalone automake bash bc binutils-dev bison build-base \

pkg/acrn-kernel/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
image: eve-acrn-kernel
22
org: lfedge
3+
4+
buildArgs:
5+
- REL_HASH_%=@lkt:pkgs:../*

pkg/acrn/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# Copyright (c) 2023 Zededa, Inc.
44
# SPDX-License-Identifier: Apache-2.0
55

6-
FROM lfedge/eve-alpine:745ae9066273c73b0fd879c4ba4ff626a8392d04 AS kernel-build
6+
ARG REL_HASH_LFEDGE_EVE_ALPINE
7+
8+
FROM ${REL_HASH_LFEDGE_EVE_ALPINE} AS kernel-build
79

810
ENV BUILD_PKGS \
911
gcc make libc-dev dev86 xz-dev perl bash python3-dev gettext iasl \

pkg/acrn/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
image: eve-acrn
22
org: lfedge
3+
4+
buildArgs:
5+
- REL_HASH_%=@lkt:pkgs:../*

pkg/alpine-base/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
image: eve-alpine-base
22
org: lfedge
33
network: yes
4+
5+
buildArgs:
6+
- REL_HASH_%=@lkt:pkgs:../*

pkg/alpine/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
image: eve-alpine
22
org: lfedge
33
network: yes
4+
5+
buildArgs:
6+
- REL_HASH_%=@lkt:pkgs:../*

pkg/apparmor/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# Copyright (c) 2023 Zededa, Inc.
44
# SPDX-License-Identifier: Apache-2.0
55

6-
FROM lfedge/eve-alpine:745ae9066273c73b0fd879c4ba4ff626a8392d04 AS build
6+
ARG REL_HASH_LFEDGE_EVE_ALPINE
7+
8+
FROM ${REL_HASH_LFEDGE_EVE_ALPINE} AS build
79
ENV BUILD_PKGS linux-headers musl-dev musl-utils musl-libintl git gcc g++ \
810
autoconf automake libtool make flex bison bash sed gettext
911
ENV PKGS alpine-baselayout

pkg/apparmor/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ config:
55
- /sys:/sys
66
capabilities:
77
- all
8+
9+
buildArgs:
10+
- REL_HASH_%=@lkt:pkgs:../*

pkg/bpftrace/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
# Copyright (c) 2024 Zededa, Inc.
44
# SPDX-License-Identifier: Apache-2.0
5-
FROM lfedge/eve-alpine:745ae9066273c73b0fd879c4ba4ff626a8392d04 AS build
5+
6+
ARG REL_HASH_LFEDGE_EVE_ALPINE
7+
8+
FROM ${REL_HASH_LFEDGE_EVE_ALPINE} AS build
69

710
ENV BUILD_PKGS make gcc g++ git perl linux-headers musl-dev cmake zlib-dev bcc-dev libbpf-dev cereal flex bison llvm13-libs llvm13-dev llvm13-static clang-dev clang-static pahole gtest-dev bash
811

pkg/bpftrace/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
org: lfedge
55
image: eve-bpftrace
66
network: no
7+
8+
buildArgs:
9+
- REL_HASH_%=@lkt:pkgs:../*

0 commit comments

Comments
 (0)