Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 87bf7db

Browse files
committed
Remove remaining refs to go dep
1 parent 45eb6eb commit 87bf7db

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ go:
99
- 1.13.x
1010

1111
script:
12-
- make install-deps
13-
- cd img2lambda && dep ensure && cd ..
12+
- make install-tools
1413
- make
1514
- make integration-test
1615
- make stage-release-binaries

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /go/src/github.com/awslabs/aws-lambda-container-image-converter
77

88
COPY . ./
99

10-
RUN make install-deps && make
10+
RUN make install-tools && make
1111

1212
FROM busybox:glibc
1313
COPY --from=builder /go/src/github.com/awslabs/aws-lambda-container-image-converter/bin/local/img2lambda /bin/img2lambda

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ generate: $(SOURCES)
3535
format: $(SOURCES)
3636
PATH=$(LOCAL_PATH) go fmt -x $(shell go list ./img2lambda/... | grep -v '/vendor/')
3737

38-
.PHONY: install-deps
39-
install-deps:
38+
.PHONY: install-tools
39+
install-tools:
4040
go get golang.org/x/tools/cmd/cover
4141
go get github.com/golang/mock/mockgen
4242
go get golang.org/x/tools/cmd/goimports

0 commit comments

Comments
 (0)