File tree Expand file tree Collapse file tree 3 files changed +1
-10
lines changed Expand file tree Collapse file tree 3 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,6 @@ RUN wget -O /usr/local/bin/jq "https://github.com/stedolan/jq/releases/download/
13
13
&& wget -O /usr/local/bin/yaml "https://github.com/mikefarah/yq/releases/download/${YAML_BIN_VERSION}/yaml_linux_amd64" \
14
14
&& chmod 755 /usr/local/bin/yaml
15
15
16
- ARG DEVELOPER
17
-
18
- RUN git config --global user.name "${DEVELOPER}" \
19
- && git config --global user.email "${DEVELOPER}@cisco.com" \
20
- && git config --global core.fileMode false \
21
- && git config --list
22
-
23
16
ENV GLIDE_VERSION v0.13.1
24
17
25
18
RUN go get github.com/alecthomas/gometalinter \
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ tmp/dev_image_id: Dockerfile.dev
60
60
@mkdir -p tmp
61
61
@docker rmi -f ${DEV_IMAGE} > /dev/null 2>&1 || true
62
62
@echo " ## Building dev container"
63
- @docker build --quiet -t ${DEV_IMAGE} --build-arg DEVELOPER= " ${DEVELOPER} " - f Dockerfile.dev .
63
+ @docker build --quiet -t ${DEV_IMAGE} -f Dockerfile.dev .
64
64
@docker inspect -f " {{ .ID }}" ${DEV_IMAGE} > tmp/dev_image_id
65
65
66
66
# ----------------------------------------------
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ export PROJECT = $(shell awk '/name: / { print $$2; exit }' ${PROJECT_FILE})
3
3
IMPORT_PATH = $(shell awk '/import: / { print $$2; exit }' ${PROJECT_FILE})
4
4
5
5
6
- DEVELOPER ?= $(shell whoami)
7
-
8
6
CI ?=
9
7
ifeq ($(strip $(CI)),)
10
8
CI_ENABLED := 0
You can’t perform that action at this time.
0 commit comments