Add openssl to CCP API container for certificate generation

The certificate service uses openssl CLI to generate CA and agent certs.
Alpine base image doesn't include it by default.

Bunker Admin
This commit is contained in:
bunker-admin 2026-04-07 15:41:17 -06:00
parent 721b4df6c3
commit dfc8b4c6f4

View File

@ -1,7 +1,7 @@
FROM node:20-alpine
# Install Docker CLI (needed to manage instance containers) + rsync (for provisioning)
RUN apk add --no-cache docker-cli docker-cli-compose rsync
# Install Docker CLI (needed to manage instance containers), rsync (provisioning), openssl (cert generation)
RUN apk add --no-cache docker-cli docker-cli-compose rsync openssl
WORKDIR /app