11 lines
265 B
Makefile
11 lines
265 B
Makefile
|
USERNAME = rilla
|
||
|
IMG_NAME = gitolite
|
||
|
|
||
|
.PHONY: build build-nc
|
||
|
|
||
|
build: Dockerfile docker-entrypoint.sh sshd_config
|
||
|
docker build -t $(USERNAME)/$(IMG_NAME) .
|
||
|
|
||
|
build-nc: Dockerfile docker-entrypoint.sh sshd_config
|
||
|
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .
|