Skip to content

Commit 863f52f

Browse files
author
Daniel Cesario
committed
Defining bash as default shell in the Makefile
* updating PHONY targets * Expose Github sercrets to the docker compose
1 parent 9d46abd commit 863f52f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
.PHONY: all build test run bash tag push pull help kill clean
1+
.PHONY: all update build test run run_image bash tag push pull help kill clean
22
.DEFAULT_GOAL := help
3+
SHELL = /bin/bash
34

45
NAME = project-x
56
NAMESPACE = barcelonapm
@@ -34,6 +35,8 @@ run_image: build ## Run the Application Docker image in the local machine.
3435

3536
run: build ## Run the Application Docker Compose in the local machine.
3637
ENVIRONMENT=$(ENVIRONMENT) \
38+
OAUTH_GITHUB_KEY=$(OAUTH_GITHUB_KEY) \
39+
OAUTH_GITHUB_SECRET=$(OAUTH_GITHUB_SECRET) \
3740
docker-compose up --force-recreate
3841

3942
kill: ## Kill the compose in the local machine.

0 commit comments

Comments
 (0)