Skip to content

Commit

Permalink
WIP: fix vndr for git:// deprecation
Browse files Browse the repository at this point in the history
Using my version from LK4D4/vndr#97

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Mar 31, 2022
1 parent 17b221a commit 294094c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,16 @@ RUN --mount=type=cache,target=/root/.cache/go-build \

FROM golang AS vndr
ARG VNDR_VERSION=v0.1.2
# FIXME temporarily using https://github.com/LK4D4/vndr/pull/97
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
--mount=type=tmpfs,target=/go/src/ \
GO111MODULE=on go install github.com/LK4D4/vndr@${VNDR_VERSION}
apk add --no-cache -qq git \
&& mkdir -p /go/src/github.com/LK4D4/vndr/ \
&& cd /go/src/github.com/LK4D4/vndr/ \
&& git clone https://github.com/thaJeztah/vndr.git . \
&& git checkout fix_git_proto \
&& GO111MODULE=off go install

FROM golang AS dev
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion vendor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ github.com/grpc-ecosystem/grpc-opentracing 8e809c8a86450a29b90dcc9efbf0
github.com/hashicorp/golang-lru 7f827b33c0f158ec5dfbba01bb0b14a4541fd81d # v0.5.3
github.com/imdario/mergo 1afb36080aec31e0d1528973ebe6721b191b0369 # v0.3.8
github.com/inconshreveable/mousetrap 76626ae9c91c4f2a10f34cad8ce83ea42c93bb75 # v1.0.0
github.com/jaguilar/vt100 ad4c4a5743050fb7f88ce968dca9422f72a0e3f2 git://github.com/tonistiigi/vt100.git
github.com/jaguilar/vt100 ad4c4a5743050fb7f88ce968dca9422f72a0e3f2 https://github.com/tonistiigi/vt100.git
github.com/json-iterator/go 0ff49de124c6f76f8494e194af75bde0f1a49a29 # 1.1.6
github.com/matttproud/golang_protobuf_extensions c12348ce28de40eed0136aa2b644d0ee0650e56c # v1.0.1
github.com/Microsoft/go-winio 5b44b70ab3ab4d291a7c1d28afe7b4afeced0ed4 # v0.4.15
Expand Down

0 comments on commit 294094c

Please sign in to comment.