7 lines
105 B
Bash
7 lines
105 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# SPDX-License-Identifier: MPL-2.0
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
podman run docker.io/library/alpine:latest ls /etc
|