mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-03 06:24:21 +01:00
While we introduced IMAGE_REGISTRY, we didn't actually update the corresponding Dockerfiles to utilize it. Let's add Fixes: #1622 Signed-off-by: Eric Ernst <eric.g.ernst@gmail.com>
42 lines
729 B
Docker
42 lines
729 B
Docker
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=docker.io
|
|
# NOTE: OS_VERSION is set according to config.sh
|
|
FROM ${IMAGE_REGISTRY}/debian:@OS_VERSION@
|
|
|
|
# RUN commands
|
|
RUN apt-get update && apt-get --no-install-recommends install -y \
|
|
apt-utils \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
build-essential \
|
|
ca-certificates \
|
|
chrony \
|
|
coreutils \
|
|
curl \
|
|
debianutils \
|
|
debootstrap \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
libstdc++-6-dev \
|
|
m4 \
|
|
make \
|
|
musl \
|
|
musl-dev \
|
|
musl-tools \
|
|
sed \
|
|
systemd \
|
|
tar \
|
|
vim \
|
|
wget
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|
|
@INSTALL_RUST@
|