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 23, 2024
1 parent ab8f2e8 commit 685264b
Show file tree
Hide file tree
Showing 7 changed files with 1,028 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,18 @@ 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
Expand All @@ -135,7 +147,8 @@ jobs:
pki-runner \
pki-server \
pki-ca \
pki-kra
pki-kra \
pki-ocsp
- name: Store PKI images
uses: actions/cache@v4
Expand Down
Loading

0 comments on commit 685264b

Please sign in to comment.