Update build environment to Fedora 36 & Go 1.19.1

This commit is contained in:
Nils Hanke 2022-09-09 15:00:36 +02:00 committed by Nils Hanke
parent b8b169c93d
commit 0949393dbb
14 changed files with 24 additions and 24 deletions

View file

@ -4,7 +4,7 @@ RUN dnf -y update && \
dnf -y install libvirt-devel @development-tools pkg-config wget git && \
dnf clean all
ARG GO_VER=1.18.3
ARG GO_VER=1.19.1
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
rm go${GO_VER}.linux-amd64.tar.gz