We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e3d613 commit ccf360fCopy full SHA for ccf360f
.gitignore
@@ -4,3 +4,5 @@
4
5
# runtime
6
/dist
7
+
8
+/.vscode
Dockerfile
@@ -1,10 +1,10 @@
1
2
-FROM golang:alpine AS builder
+FROM golang:1.18-alpine3.16 AS builder
3
ADD ./go/src ./go/src
ADD ./Makefile .
-RUN apk add --update make build-base git
+RUN apk add --update make build-base git binutils-gold
RUN set -ex && \
- make
+ make
9
FROM alpine
10
RUN apk add --update ca-certificates
Makefile
@@ -3,6 +3,7 @@ export DIST_PATH := $(PROJECT_HOME)/dist
export GOPATH := $(PROJECT_HOME)/go
export GOSRC := $(GOPATH)/src
export GOPKG := $(GOPATH)/pkg
+export GO111MODULE := off
.PHONY: all prep plugins cli compile test clean
0 commit comments