Get the CD folder to build the docker image

This commit is contained in:
2022-06-10 17:24:16 +02:00
parent 7b0087b6ae
commit 15bf31cdb3
+1 -1
View File
@@ -33,7 +33,7 @@ def build_docker(b3d_version: (str, str)):
}
tag_name = f'stilobique/blender:{args["b3d_vs_major"]}.{args["b3d_vs_minor"]}'
b3d_image = client.images.build(path=str(pathlib.Path(os.getcwd(), 'Dockerfile')), buildargs=args, tag=tag_name)
b3d_image = client.images.build(path=os.getcwd(), buildargs=args, tag=tag_name)
b3d_image.push()