mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-18 22:04:22 +01:00
Detect the Go version required to build the agent from the versions.yaml file in the runtime repository. Fixes: #291 Signed-off-by: Marco Vedovati <mvedovati@suse.com>
19 lines
285 B
Docker
19 lines
285 B
Docker
#
|
|
# Copyright (c) 2018 HyperHQ Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From golang:@GO_VERSION@-alpine
|
|
|
|
RUN apk update && apk add \
|
|
git \
|
|
make \
|
|
bash \
|
|
gcc \
|
|
musl-dev \
|
|
linux-headers \
|
|
apk-tools-static \
|
|
libseccomp \
|
|
libseccomp-dev \
|
|
curl
|