Skip to content

Commit

Permalink
Add OCSP container
Browse files Browse the repository at this point in the history
The Dockerfile has been updated to define a new OCSP container.

A new test has been added to create CA and OCSP containers, then
verify CRL publishing and revocation checking.
  • Loading branch information
edewata committed May 21, 2024
1 parent dcdfe0a commit f471bce
Show file tree
Hide file tree
Showing 7 changed files with 998 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,28 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker

- name: Build pki-ocsp image
uses: docker/build-push-action@v5
with:
context: .
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-ocsp
target: pki-ocsp
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker

- name: Save PKI images
run: |
docker images
docker save -o pki-images.tar pki-dist pki-runner pki-server pki-ca pki-kra
docker save -o pki-images.tar \
pki-dist \
pki-runner \
pki-server \
pki-ca \
pki-kra \
pki-ocsp
- name: Store PKI images
uses: actions/cache@v4
Expand Down
Loading

0 comments on commit f471bce

Please sign in to comment.