Skip to content

Instantly share code, notes, and snippets.

View effrenus's full-sized avatar
🖖
(๑•́ ₃ •̀๑)

Sazonov Alexey effrenus

🖖
(๑•́ ₃ •̀๑)
View GitHub Profile
@effrenus
effrenus / Makefile
Created November 29, 2017 14:21 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)