Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 06782fb

Browse files
committed
no need to allocate a tty during build
1 parent 1425b18 commit 06782fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
2828
DOCKER_IMAGE := docker-dev$(if $(GIT_BRANCH),:$(GIT_BRANCH))
2929
DOCKER_DOCS_IMAGE := docker-docs$(if $(GIT_BRANCH),:$(GIT_BRANCH))
3030

31-
DOCKER_RUN_DOCKER := docker run --rm -it --privileged $(DOCKER_ENVS) $(DOCKER_MOUNT) "$(DOCKER_IMAGE)"
31+
DOCKER_RUN_DOCKER := docker run --rm -i --privileged $(DOCKER_ENVS) $(DOCKER_MOUNT) "$(DOCKER_IMAGE)"
3232

33-
DOCKER_RUN_DOCS := docker run --rm -it $(DOCS_MOUNT) -e AWS_S3_BUCKET -e NOCACHE
33+
DOCKER_RUN_DOCS := docker run --rm -i $(DOCS_MOUNT) -e AWS_S3_BUCKET -e NOCACHE
3434

3535
# for some docs workarounds (see below in "docs-build" target)
3636
GITCOMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)

0 commit comments

Comments
 (0)