State hub update and Containerization

This commit is contained in:
2026-05-07 20:27:03 +02:00
parent b77da0daab
commit d61bc078fd
6 changed files with 158 additions and 1 deletions

23
Containerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM python:3.12-slim
LABEL org.opencontainers.image.title="guide-board-core"
LABEL org.opencontainers.image.description="Guide Board certification and compliance preparation CLI core."
ENV PYTHONUNBUFFERED=1
WORKDIR /opt/guide-board
COPY pyproject.toml README.md LICENSE ./
COPY src ./src
COPY docs ./docs
COPY extensions ./extensions
COPY profiles ./profiles
COPY INTENT.md ./
RUN python -m pip install --no-cache-dir --upgrade pip \
&& python -m pip install --no-cache-dir .
VOLUME ["/runs", "/profiles", "/credentials", "/assets"]
ENTRYPOINT ["guide-board"]
CMD ["--help"]