generated from coulomb/repo-seed
Separated open-cmis-tck and guide-board repositories
This commit is contained in:
23
Containerfile
Normal file
23
Containerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user