You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build a Golang program inside Docker on an M4 MacBook Pro, using an amd64 version of the Docker golang image.
# DockerfileFROM --platform=linux/amd64 golang:1.20.5-buster
RUN apt-get --allow-releaseinfo-change -y update
RUN apt-get install -y git make
WORKDIR /go/src/app
COPY google-webrisk .
RUN make
Go version
go version go1.20.5 linux/amd64
Output of
go env
in your module/workspace:What did you do?
I tried to build a Golang program inside Docker on an M4 MacBook Pro, using an
amd64
version of the Dockergolang
image.Code to reproduce: google-webrisk-amd64-docker.tar.gz
I'm using:
What did you see happen?
The Golang compiler crashed with
signal: illegal instruction
What did you expect to see?
I expected compilation to succeed.
The text was updated successfully, but these errors were encountered: