mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-23 00:04:24 +01:00
To simplify maintaince, create dockerfiles based on templates. This way when golang version is updated it will be done in one place versions.txt. This also allow to allways intall the same version of golang in any dockerfile. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
7 lines
180 B
Docker
7 lines
180 B
Docker
From fedora:@OS_VERSION@
|
|
|
|
RUN dnf -y update && dnf install -y git redhat-release systemd pkgconfig gcc
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|