Files
stack/docker/openbao/Dockerfile
Jason Woltje 7073057e8d
All checks were successful
ci/woodpecker/push/infra Pipeline was successful
fix: bump openbao 2.5.0→2.5.1 (CVE-2026-24051 otel/sdk PATH hijack) (#589)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-03-01 03:14:49 +00:00

20 lines
547 B
Docker

FROM quay.io/openbao/openbao:2.5.1
LABEL maintainer="Mosaic Stack <dev@mosaic.local>"
LABEL description="OpenBao secrets management for Mosaic Stack"
# Copy OpenBao configuration
COPY config.hcl /openbao/config/config.hcl
# Copy auto-initialization script
COPY init.sh /openbao/init.sh
RUN chmod +x /openbao/init.sh
# Expose OpenBao port
EXPOSE 8200
# Use the default entrypoint from the base image
# The container will be started with either:
# - Default: openbao server -config=/openbao/config/config.hcl
# - Init sidecar: /openbao/init.sh