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

Commit

Permalink
Remove remaining refs to go dep
Browse files Browse the repository at this point in the history
  • Loading branch information
clareliguori committed Jan 7, 2020
1 parent 45eb6eb commit 87bf7db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ go:
- 1.13.x

script:
- make install-deps
- cd img2lambda && dep ensure && cd ..
- make install-tools
- make
- make integration-test
- make stage-release-binaries
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /go/src/github.com/awslabs/aws-lambda-container-image-converter

COPY . ./

RUN make install-deps && make
RUN make install-tools && make

FROM busybox:glibc
COPY --from=builder /go/src/github.com/awslabs/aws-lambda-container-image-converter/bin/local/img2lambda /bin/img2lambda
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ generate: $(SOURCES)
format: $(SOURCES)
PATH=$(LOCAL_PATH) go fmt -x $(shell go list ./img2lambda/... | grep -v '/vendor/')

.PHONY: install-deps
install-deps:
.PHONY: install-tools
install-tools:
go get golang.org/x/tools/cmd/cover
go get github.com/golang/mock/mockgen
go get golang.org/x/tools/cmd/goimports
Expand Down

0 comments on commit 87bf7db

Please sign in to comment.