From eeab7f4afed915f2f2f4233977fa26f37163d08b Mon Sep 17 00:00:00 2001 From: abdennour Date: Wed, 18 Jan 2023 00:50:43 +0300 Subject: [PATCH] feat(golang): with make --- docker-images/golang/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docker-images/golang/Dockerfile diff --git a/docker-images/golang/Dockerfile b/docker-images/golang/Dockerfile new file mode 100644 index 0000000..2223fbe --- /dev/null +++ b/docker-images/golang/Dockerfile @@ -0,0 +1,10 @@ +AGO GOLANG_VERSION +FROM golang:$GOLANG_VERSION-alpine +RUN apk update && apk add curl \ + git \ + protobuf \ + bash \ + make \ + openssh-client && \ + rm -rf /var/cache/apk/* +