Adding upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
28e863dd91
commit
e0857d13c1
77 changed files with 23610 additions and 2331 deletions
23
Makefile
23
Makefile
|
@ -1,10 +1,25 @@
|
|||
CURRENT_DIR = $(shell pwd)
|
||||
|
||||
DOCKER_NAME ?= titom73/eos-downloader
|
||||
DOCKER_NAME ?= ghcr.io/titom73/eos-downloader
|
||||
DOCKER_TAG ?= dev
|
||||
DOCKER_FILE ?= Dockerfile
|
||||
PYTHON_VER ?= 3.9
|
||||
PYTHON_VER ?= 3
|
||||
|
||||
.PHONY: help
|
||||
help: ## Display help message
|
||||
@grep -E '^[0-9a-zA-Z_-]+\.*[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
.PHONY: base
|
||||
base: ## Build a base image
|
||||
docker build -t $(DOCKER_NAME):$(DOCKER_TAG) --build-arg DOCKER_VERSION=$(DOCKER_VERSION) -f $(DOCKER_FILE) .
|
||||
|
||||
.PHONY: dnd
|
||||
dnd: ## Build a docker in docker image
|
||||
docker build -t $(DOCKER_NAME):dnd-$(DOCKER_TAG) --build-arg DOCKER_VERSION=$(DOCKER_VERSION) -f Dockerfile.docker .
|
||||
|
||||
.PHONY: build
|
||||
build:
|
||||
docker build -t $(DOCKER_NAME):$(DOCKER_TAG) --build-arg DOCKER_VERSION=$(DOCKER_VERSION) -f $(DOCKER_FILE) .
|
||||
build: base dnd ## Build all dockers images (base and dnd)
|
||||
|
||||
.PHONY: push
|
||||
push: ## Push the docker image to the registry
|
||||
docker push $(DOCKER_NAME):$(DOCKER_TAG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue