Skip to content

Commit e0f3699

Browse files
author
Jakob Helmecke
committed
Added Makefile for easier development
1 parent 1856f16 commit e0f3699

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Image URL to use all building/pushing image targets
2+
IMG ?= quay.io/yeebase/debian-base:dev
3+
4+
# Build the docker image
5+
docker-build:
6+
docker build . -t ${IMG} -f Dockerfile
7+
8+
# Push the docker image
9+
docker-push:
10+
docker push ${IMG}

0 commit comments

Comments
 (0)