Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Makefile: use latest Go when building in Docker #1083

Merged
merged 1 commit into from
Oct 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build: update-assets build-slim
.PHONY: build-in-docker
build-in-docker:
# increase ulimit to workaround https://github.com/golang/go/issues/37436
docker run --ulimit memlock=1024000 --rm -ti -v $(shell pwd):/usr/src/lokomotive -w /usr/src/lokomotive golang:1.14 sh -c "make"
docker run --ulimit memlock=1024000 --rm -ti -v $(shell pwd):/usr/src/lokomotive -w /usr/src/lokomotive golang:1.15.3 sh -c "make"

.PHONY: build-test
build-test:
Expand Down