mirror of
https://github.com/luxfi/kms.git
synced 2026-07-26 23:59:24 +00:00
Squashes all pre-rewrite history into a single root commit. Previous tree: - 14506 commits including upstream Infisical fork history - Multiple merge chains carrying pre-purge content Force-rewrite per disk-space reclamation discipline. GHCR images (1.9.9, 1.9.11) remain immutable; their git lineage is no longer materialized.
8 lines
272 B
Docker
8 lines
272 B
Docker
FROM debian:bookworm-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates libsqlcipher0 tzdata && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY kms /usr/local/bin/kms
|
|
EXPOSE 8443 9652
|
|
ENTRYPOINT ["kms"]
|
|
CMD ["serve","--http=0.0.0.0:8443"]
|