Dockerfile.certgen 393 B

123456789101112131415161718
  1. # use the last version of alpine that has a version of nss-tools with support
  2. # for the legacy dbm format compiled in.
  3. FROM alpine:3.16
  4. RUN apk add --no-cache \
  5. openssl \
  6. nss-tools \
  7. bash \
  8. ca-certificates \
  9. curl
  10. WORKDIR /certs
  11. # Set default database type to legacy DBM (instead of sqlite), the only type
  12. # AIM 6 supports.
  13. ENV NSS_DEFAULT_DB_TYPE=dbm
  14. CMD ["/bin/bash"]