From 3a81eb82de78012a68ee0fb6d6dd33d03ad3e654 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 27 Oct 2018 16:24:07 +0200 Subject: [PATCH] added docker image --- Dockerfile | 3 +++ README.md | 1 + 2 files changed, 4 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ec19a69 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM golang:1.11-alpine3.7 +ENV GO111MODULE=on +RUN apk --no-cache add build-base git diff --git a/README.md b/README.md index 7ef0b1b..0790eca 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # golang-build +A docker image to build go applications with module support enabled.