base: "ubuntu:24.04" packages: - vim - git - curl - wget remove_packages: - snapd repos: - name: main url: "http://archive.ubuntu.com/ubuntu" components: [main, universe] enabled: true filesystem: rootfs: "/var/lib/apt-ostree/rootfs" staging: "/var/lib/apt-ostree/staging" cache: "/var/lib/apt-ostree/cache" preserve_permissions: true preserve_timestamps: true enable_hardlinks: true metadata: commit_subject: "Test compose with vim, git, curl, wget" commit_body: "Added development tools to Ubuntu 24.04 base" author: "apt-ostree " version: "1.0.0" labels: compose.type: development compose.base: "ubuntu:24.04" postprocess: enabled: true scripts: [] environment: COMPOSE_TYPE: development container: name: test-compose tag: latest architecture: amd64 os: linux entrypoint: ["/bin/bash"] cmd: ["-c", "echo 'Hello from apt-ostree compose!'"] env: - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" working_dir: "/" user: root labels: org.opencontainers.image.title: "apt-ostree test compose" org.opencontainers.image.description: "Test compose with development tools"