.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools / gopls@v0.6.9 / integration / govim / Dockerfile
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.6.9/integration/govim/Dockerfile b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.6.9/integration/govim/Dockerfile
new file mode 100644 (file)
index 0000000..75944eb
--- /dev/null
@@ -0,0 +1,16 @@
+# Copyright 2019 The Go Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style
+# license that can be found in the LICENSE file.
+
+# govim requires a more recent version of vim than is available in most
+# distros, so we build from their base image.
+FROM govim/govim:latest-vim
+ARG GOVIM_REF
+
+ENV GOPROXY=https://proxy.golang.org GOPATH=/go VIM_FLAVOR=vim
+WORKDIR /src
+
+# Clone govim. In order to use the go command for resolving latest, we download
+# a redundant copy of govim to the build cache using `go mod download`.
+RUN git clone https://github.com/govim/govim /src/govim && cd /src/govim && \
+    git checkout $GOVIM_REF