Skip to content
Snippets Groups Projects
Makefile 292 B
VERSION=$(shell cat VERSION)
TAG?=${VERSION}

all: update build push

update:
	python3 scripts/discourse-plugins.py ${VERSION}

build:
	sudo podman build -t quay.io/libre.sh/discourse:${TAG} --build-arg DISCOURSE_VERSION=${VERSION} .

push:
	sudo podman push quay.io/libre.sh/discourse:${TAG}