Skip to content

Commit fd89b9d

Browse files
committed
Merge branch 'feature/v0.1.15' into develop
2 parents bca7bbd + 844a5c1 commit fd89b9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ def docker_build(ctx: Context):
167167

168168
message_box('Building "docker" image...')
169169

170-
for archictecture in ("arm64", "amd64"):
170+
for architecture in ("arm64", "amd64"):
171171
ctx.run(
172-
f"docker build --platform=linux/{archictecture} "
172+
f"docker build --platform=linux/{architecture} "
173173
f"-t {ORG}/{CONTAINER}:latest "
174-
f"-t {ORG}/{CONTAINER}:latest-{archictecture} "
175-
f"-t {ORG}/{CONTAINER}:v{app.__version__}-{archictecture} ."
174+
f"-t {ORG}/{CONTAINER}:latest-{architecture} "
175+
f"-t {ORG}/{CONTAINER}:v{app.__version__}-{architecture} ."
176176
)
177177

178178

0 commit comments

Comments
 (0)