From 7424de6582284ace48ae15b99d8d9297efb0a529 Mon Sep 17 00:00:00 2001 From: sharnoff Date: Mon, 9 Jan 2023 16:03:28 -0800 Subject: [PATCH] port 013d27a: build: Clarify comments about gcc dep(s) --- build/vm-informant/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/vm-informant/Dockerfile b/build/vm-informant/Dockerfile index 66faee48a..17c220c39 100644 --- a/build/vm-informant/Dockerfile +++ b/build/vm-informant/Dockerfile @@ -1,7 +1,7 @@ FROM golang:1.19-alpine AS builder WORKDIR /workspace -RUN apk add gcc musl-dev # required for gcc-go +RUN apk add gcc musl-dev # gcc (and therefore musl-dev) is required for cgo extensions COPY go.mod go.mod COPY go.sum go.sum