Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dagster_uc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def build_and_push(
BuildTool.podman.value,
"build",
"-f",
os.path.join(repository_root, dockerfile),
os.path.join(os.getcwd(), dockerfile),
"-t",
os.path.join(image_registry, f"{image_name}:{tag}"),
"--build-arg=BRANCH_NAME=" + branch_name,
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[project]
name = "dagster-uc"
version = "0.2.1"
authors = [{name = "Stefan Verbruggen", email="[email protected]"}, {name = "Ion Koutsouris"}]
version = "0.2.2"
authors = [
{name = "Stefan Verbruggen"},
{name = "Ion Koutsouris"},
]
description = "CLI for managing user code deployments of a Dagster instance that was deployed on kubernetes."
readme = "README.md"
requires-python = ">=3.9"
Expand Down Expand Up @@ -159,4 +162,4 @@ suppress-none-returning = true

[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
convention = "google"
convention = "google"
Loading