2 Container Images
Foster Hangdaan edited this page 2024-10-22 12:29:28 -04:00

Container Images

This document shows where to find the official container images as well as how to build your own image.

Official Registry

Official container images are provided for use with container orchestration tools such as Podman:

podman pull code.fosterhangdaan.com/foster/arch-packaging-container:latest

Building the Image

Instructions on how to build the container image.

Prerequisites

Install an OCI-compliant container management tool: Podman or Docker.

Procedure

  1. Clone the repository:

    git clone https://code.fosterhangdaan.com/foster/arch-packaging-container.git
    
  2. Navigate to the directory:

    cd arch-packaging-directory
    
  3. Start the build:

    podman build -t arch-packaging-container:latest .
    

    For Docker:

    docker build -t arch-packaging-container:latest -f Containerfile .
    

    Note

    The path to the Containerfile must be provided to the command when using Docker.