Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 34ea00e

Browse files
committed
dockerfile: fix build for go modules
1 parent e1c0b05 commit 34ea00e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:alpine
22

33
COPY . /go/src/github.com/sourcegraph/go-langserver
4-
RUN go install github.com/sourcegraph/go-langserver
4+
RUN cd /go/src/github.com/sourcegraph/go-langserver && go install .
55
RUN apk add --no-cache openssh git curl
66
CMD ["go-langserver"]

0 commit comments

Comments
 (0)