mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-18 14:54:19 +01:00
If alpine image is created inside a container, it does not get any golang version data. It will try to get it by installing yq. To install yq curl is used. Signed-off-by: Carlos Venegas <jos.c.venegas.munoz@intel.com>
14 lines
223 B
Docker
14 lines
223 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 \
|
|
bash \
|
|
curl \
|
|
coreutils \
|
|
binutils
|