diff --git a/Makefile b/Makefile index cf7ec2d..c572538 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ preflight-check: remote-repo-pull: @echo "Pulling latest repo on remote host: $(REMOTE_APP_PATH)" - @docker run --rm -v "$(REMOTE_APP_PATH):/repo" alpine/git sh -lc "set -e; cd /repo && git fetch $(GIT_REMOTE) && git pull --ff-only $(GIT_REMOTE) $(GIT_BRANCH)" + @docker run --rm --entrypoint /bin/sh -v "$(REMOTE_APP_PATH):/repo" alpine/git -lc "set -e; cd /repo && git fetch $(GIT_REMOTE) && git pull --ff-only $(GIT_REMOTE) $(GIT_BRANCH)" sync-addons: @echo "Syncing addons to volume: $(REMOTE_ADDONS_DST)"