7 lines
105 B
Bash
7 lines
105 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
(
|
||
|
cd images
|
||
|
podman build -t ubuntu-ci:dev -f ./Dockerfile.ubuntu-latest
|
||
|
) || exit 1
|