Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Add -E flag to make install (#12)
Browse files Browse the repository at this point in the history
* Add `-E` flag to `make install`

* Bump `helmfiles` version
  • Loading branch information
aknysh authored Aug 16, 2018
1 parent 23d2791 commit 6568780
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM cloudposse/terraform-root-modules:0.5.3 as terraform-root-modules

FROM cloudposse/helmfiles:0.2.0 as helmfiles
FROM cloudposse/helmfiles:0.3.1 as helmfiles

FROM cloudposse/geodesic:0.12.6
FROM cloudposse/geodesic:0.13.2

ENV DOCKER_IMAGE="cloudposse/staging.cloudposse.co"
ENV DOCKER_TAG="latest"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export DOCKER_ORG ?= cloudposse
export DOCKER_IMAGE ?= $(DOCKER_ORG)/$(CLUSTER)
export DOCKER_TAG ?= latest
export DOCKER_IMAGE_NAME ?= $(DOCKER_IMAGE):$(DOCKER_TAG)
export DOCKER_BUILD_FLAGS =
export DOCKER_BUILD_FLAGS =
export README_DEPS ?= docs/targets.md docs/terraform.md
export INSTALL_PATH ?= /usr/local/bin

Expand All @@ -27,7 +27,7 @@ push:

## Install wrapper script from geodesic container
install:
@docker run --rm $(DOCKER_IMAGE_NAME) | sudo bash -s $(DOCKER_TAG)
@docker run --rm $(DOCKER_IMAGE_NAME) | sudo -E bash -s $(DOCKER_TAG)

## Start the geodesic shell by calling wrapper script
run:
Expand Down

0 comments on commit 6568780

Please sign in to comment.