Skip to content

Commit

Permalink
Fix docker args
Browse files Browse the repository at this point in the history
  • Loading branch information
bufdev committed Oct 29, 2019
1 parent af71b13 commit 17ffe0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.workspace
@@ -1,8 +1,8 @@
FROM golang:1.13.3-alpine3.10

ARG PROJECT
ARG GO_MODULE

FROM golang:1.13.3-alpine3.10

ENV \
CACHE_BASE=/cache/$PROJECT \
GO111MODULE=on \
Expand Down
1 change: 1 addition & 0 deletions make/base.mk
Expand Up @@ -52,6 +52,7 @@ envrestore:
direnv:
@mkdir -p $(CACHE_ENV)
@rm -f $(CACHE_ENV)/env.sh
@echo 'export CACHE="$(abspath $(CACHE))"' >> $(CACHE_ENV)/env.sh
@echo 'export GO111MODULE="$(GO111MODULE)"' >> $(CACHE_ENV)/env.sh
@echo 'export GOPRIVATE="$(GOPRIVATE)"' >> $(CACHE_ENV)/env.sh
@echo 'export GOPATH="$(GOPATH)"' >> $(CACHE_ENV)/env.sh
Expand Down
5 changes: 2 additions & 3 deletions make/buf/all.mk
@@ -1,13 +1,12 @@
PROTO_PATH := proto
PROTOC_GEN_GO_OUT := internal/gen/proto
GO_BINS := \
GO_BINS := $(GO_BINS) \
buf \
protoc-gen-buf-check-breaking \
protoc-gen-buf-check-lint
GO_GET_PKGS := github.com/jhump/protoreflect@master

DOCKER_BINS := \
buf
DOCKER_BINS := $(DOCKER_BINS) buf

include make/buf/versions.mk
include make/base.mk
Expand Down

0 comments on commit 17ffe0a

Please sign in to comment.