mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-22 13:38:26 +00:00
The rootfs-initrd build is failing with: ``` fetch https://mirror.math.princeton.edu/pub/alpinelinux//v3.18/main/aarch64/APKINDEX.tar.gz 6684368:error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed:ssl/statem/statem_clnt.c:1914: ERROR: https://mirror.math.princeton.edu/pub/alpinelinux//v3.18/main: Permission denied ``` so try bumping to a newer version of alpine to see if that helps the issue Signed-off-by: stevenhorsman <steven@uk.ibm.com>
25 lines
582 B
Bash
25 lines
582 B
Bash
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
OS_NAME="Alpine"
|
|
|
|
OS_VERSION=${OS_VERSION:-3.18}
|
|
|
|
BASE_PACKAGES="alpine-base"
|
|
|
|
# Alpine mirror to use
|
|
# See a list of mirrors at http://nl.alpinelinux.org/alpine/MIRRORS.txt
|
|
MIRROR=http://dl-cdn.alpinelinux.org/alpine/
|
|
|
|
PACKAGES="bash iptables ip6tables"
|
|
|
|
# Init process must be one of {systemd,kata-agent}
|
|
INIT_PROCESS=kata-agent
|
|
# List of zero or more architectures to exclude from build,
|
|
# as reported by `uname -m`
|
|
ARCH_EXCLUDE_LIST=()
|
|
|
|
[ "$SECCOMP" = "yes" ] && PACKAGES+=" libseccomp" || true
|