mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-23 00:04:24 +01:00
The openssl-sys crate will automatically detect: https://docs.rs/openssl/0.10.16/openssl/#automatic Signed-off-by: Arron Wang <arron.wang@intel.com>
35 lines
529 B
Docker
35 lines
529 B
Docker
#
|
|
# Copyright (c) 2018 HyperHQ Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=docker.io
|
|
FROM ${IMAGE_REGISTRY}/alpine:3.13.5
|
|
|
|
RUN apk update && apk add \
|
|
apk-tools-static \
|
|
autoconf \
|
|
automake \
|
|
bash \
|
|
binutils \
|
|
cmake \
|
|
coreutils \
|
|
curl \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
libseccomp \
|
|
libseccomp-dev \
|
|
linux-headers \
|
|
m4 \
|
|
make \
|
|
musl \
|
|
musl-dev \
|
|
openssl-dev \
|
|
perl \
|
|
perl-module-build \
|
|
pkgconfig \
|
|
protoc \
|
|
tar
|