fix: fix Containerfile refs NOISSUE

This commit is contained in:
2026-03-01 16:55:19 +01:00
parent dde9402426
commit 885cf13117
2 changed files with 6 additions and 8 deletions

View File

@@ -1,6 +1,4 @@
.ONESHELL:
ENV_PREFIX=$(shell python -c "if __import__('pathlib').Path('.venv/bin/pip').exists(): print('.venv/bin/')")
USING_POETRY=$(shell grep "tool.poetry" pyproject.toml && echo "yes")
.PHONY: issetup
issetup:
@@ -45,7 +43,7 @@ release: issetup ## Create a new tag for release.
.PHONY: build
build: issetup ## Create a new tag for release.
@docker build -t n8n_ollama:$(cat n8n_ollama/VERSION) -f Containerfile .
@docker build -t n8n_ollama:$$(cat n8n_ollama/VERSION) -f Containerfile .
# This project has been generated from rochacbruno/python-project-template
# __author__ = 'rochacbruno'