dockerfiles/tor/Makefile

11 lines
222 B
Makefile
Raw Normal View History

2020-04-08 13:05:07 +02:00
USERNAME = rilla
IMG_NAME = tor
.PHONY: build build-nc
2021-02-18 10:23:44 +01:00
build: Dockerfile entrypoint.sh
2020-04-08 13:05:07 +02:00
docker build -t $(USERNAME)/$(IMG_NAME) .
2021-02-18 10:23:44 +01:00
build-nc: Dockerfile entrypoint.sh
2020-04-08 13:05:07 +02:00
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .