2019-12-18 12:55:07 -07:00
|
|
|
# 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.
|
2020-03-25 14:14:43 -06:00
|
|
|
FROM govim/govim:latest-vim
|
2019-12-18 12:55:07 -07:00
|
|
|
|
2020-01-13 13:22:19 -07:00
|
|
|
# We use a pinned version of govim so that this build is repeatable, and so
|
|
|
|
# that we're not sensitive to test breakages in govim.
|
2019-12-18 12:55:07 -07:00
|
|
|
# TODO(findleyr): Once a version of govim has been tagged containing
|
|
|
|
# https://github.com/govim/govim/pull/629, switch this to @latest.
|
2020-02-04 18:14:12 -07:00
|
|
|
ENV GOPROXY=https://proxy.golang.org GOPATH=/go VIM_FLAVOR=vim
|
2020-01-13 13:22:19 -07:00
|
|
|
WORKDIR /src
|
|
|
|
|
2020-02-04 18:14:12 -07:00
|
|
|
# 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 GOVIM_VERSION=$(go mod download -json github.com/govim/govim@latest | jq -r .Version) && \
|
|
|
|
git clone https://github.com/govim/govim /src/govim && cd /src/govim && \
|
2020-03-30 20:51:42 -06:00
|
|
|
git checkout $GOVIM_VERSION
|