Still missing documentation about Output core component And actual Action/Targets etc ... in the process of migrating to the new engine
13 lines
188 B
Python
Executable File
13 lines
188 B
Python
Executable File
#!/usr/bin/env shlax
|
|
"""
|
|
Shlaxfile for shlax itself.
|
|
"""
|
|
|
|
from shlax.shortcuts import *
|
|
|
|
build = Buildah(
|
|
Run('echo hi'),
|
|
Packages('python38'),
|
|
base='quay.io/podman/stable',
|
|
)
|