shlax/shlaxfile.py
2020-04-21 00:18:02 +02:00

16 lines
225 B
Python
Executable File

#!/usr/bin/env shlax
"""
Shlaxfile for shlax itself.
"""
from shlax.shortcuts import *
build = Buildah(
'quay.io/podman/stable',
Run('echo hi'),
commit='docker.io/yourlabs/shlax',
workdir='/app',
)
build()