mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-25 01:13:28 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
13 lines
257 B
Python
13 lines
257 B
Python
import os
|
|
import subprocess
|
|
|
|
|
|
def create_base_test_image():
|
|
subprocess.check_call(
|
|
['podman', 'build', '-t', 'nopush/podman-compose-test', '.'],
|
|
cwd=os.path.join(os.path.dirname(__file__), "base_image"),
|
|
)
|
|
|
|
|
|
create_base_test_image()
|