Skip to content

Building CA Container

Endi S. Dewata edited this page Aug 20, 2022 · 10 revisions

Overview

This page describes the procedure to build PKI CA container.

Prerequisites

To install Podman:

$ dnf install podman

To install Docker:

$ dnf install docker

Dockerfile

The CA Dockerfile is located at base/ca/Dockerfile.

Building Container Image Locally

To build with Podman:

$ podman build \
    -f base/ca/Dockerfile \
    -t pki-ca \
    .

To build with Docker:

$ docker build \
    -f base/ca/Dockerfile \
    -t pki-ca \
    .
Clone this wiki locally