Hephaestus/Makefile

13 lines
305 B
Makefile
Raw Permalink Normal View History

2023-07-16 22:27:57 +01:00
TAG = $(shell git describe)
2023-07-16 18:51:21 +01:00
build:
docker build -t lxsameer/hephaestus:$(TAG) .
2023-07-16 22:27:57 +01:00
run:
docker run -d --name test -e PUID=1000 -e PGID=1000 -e TZ=Etc/UTC -e PUBLIC_KEY_DIR=$(PWD)/pub_keys/ -p 2222:22 -p 9000:9000 lxsameer/hephaestus:$(TAG)
2023-07-16 18:51:21 +01:00
push:
docker push lxsameer/hephaestus:$(TAG)
all: build push