This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG GOLANG=1.13.8-buster | |
FROM golang:${GOLANG} as builder | |
RUN apt-get update && apt-get install -qy build-essential software-properties-common gcc make sudo | |
ENV CGO_ENABLED=1 GOOS=linux GOARCH=arm64 | |
RUN go get -u -v google.golang.org/grpc && \ | |
git clone --depth 1 --branch v20.07.2 https://www.github.com/dgraph-io/dgraph/ && \ | |
cd dgraph && \ | |
make dgraph |