TAG=cyrilleberger/cyloncore-stories

HOSTNAME=$(shell hostname)

build:
	docker build -t ${TAG} .

force-build:
	docker build --no-cache -t ${TAG} .

push:
	docker push ${TAG}

pull:
	docker pull ${TAG}

run:
	-docker run -it ${TAG} bash

