mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-03 23:01:48 +00:00
Add inventory plugins for buildah and podman, unit tests and functional CI tests. --------- Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
10 lines
346 B
YAML
10 lines
346 B
YAML
---
|
|
# Minimal example role to provision an AI dev environment inside a Buildah working container
|
|
- name: Ensure pip present
|
|
shell: python3 -m ensurepip || true
|
|
|
|
- name: Upgrade pip
|
|
shell: python3 -m pip install --upgrade pip
|
|
|
|
- name: Install common data science packages
|
|
shell: python3 -m pip install --no-cache-dir numpy pandas jupyterlab
|