-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathContainerfile
More file actions
104 lines (83 loc) · 3.26 KB
/
Containerfile
File metadata and controls
104 lines (83 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
FROM registry.access.redhat.com/ubi10-minimal:10.1-1770180557 as base
FROM base as build
RUN microdnf -y --nodocs --setopt=install_weak_deps=0 install \
git \
nodejs24-npm \
python3.12 \
python3.12-pip \
python-unversioned-command \
&& microdnf clean all \
&& alternatives --install /usr/bin/node node /usr/bin/node-24 24 \
&& alternatives --install /usr/bin/npm npm /usr/bin/npm-24 24
ARG PSEUDO_VERSION=0.1.0a
ENV VENVS=/opt/venvs
ENV UV_PROJECT=/usr/share/container-setup/linux-mcp-server/
ENV UV_PROJECT_ENVIRONMENT="${VENVS}"/mcp
ENV UV_PYTHON=/usr/bin/python
ENV PATH=$VENVS/mcp/bin:"$VENVS/uv/bin:$PATH"
# Provide the version to avoid the need to pass in the .git directory.
# https://setuptools-scm.readthedocs.io/en/latest/usage/#with-dockerpodman
# FIXME: This should be SETUPTOOLS_SCM_PRETEND_VERSION_FOR_${DIST_NAME} but I
# can't figure out what exactly the value for DIST_NAME should be.
ENV SETUPTOOLS_SCM_PRETEND_VERSION=${PSEUDO_VERSION}
# Add in source files. The .git directory is used by setuptools-scm to determine
# the release version.
ADD uv.lock pyproject.toml README.md "$UV_PROJECT"
ADD src/ "$UV_PROJECT"/src/
ADD mcp-app/ "$UV_PROJECT"/mcp-app/
# Build the HTML resource for our mcp-app; using npm rebuild
# here is a workaround for a race condition where the
# downloading the esbuild binary and running it immediately
# gave an ETXTBUSY error.
RUN cd "$UV_PROJECT"/mcp-app/ \
&& npm ci --ignore-scripts \
&& sync \
&& npm rebuild \
&& npm run build:prod
# Install the application in its own virtual environment
RUN python -m venv /opt/venvs/uv \
&& /opt/venvs/uv/bin/python -m pip install -U pip \
&& /opt/venvs/uv/bin/python -m pip install uv \
&& uv venv --seed "${VENVS}"/mcp \
&& uv sync --no-cache --locked --no-dev --no-editable \
&& "${VENVS}"/mcp/bin/python -m pip uninstall -y diskcache
FROM base as final
ARG UID=1001
ARG SOURCE_DATE_EPOCH
ARG PSEUDO_VERSION=0.1.0a
ARG VERSION=0.1.0a
# Indicator the application is running in a container
ENV container=docker
ENV VENV=/opt/venvs/mcp
ENV PATH="${VENV}/bin:$PATH"
ENV HOME=/var/lib/mcp
# Application configuration
ENV LINUX_MCP_SEARCH_FOR_SSH_KEY=True
LABEL com.redhat.component=linux-mcp-server
LABEL cpe="cpe:2.3:a:redhat:linux_mcp_server:-:*:*:*:*:*:*:*"
LABEL description="MCP Server for inspecting Linux"
LABEL distribution-scope=private
LABEL io.k8s.description="MCP Server for inspecting Linux"
LABEL io.k8s.display-name="Linux MCP Server"
LABEL io.openshift.tags="rhel,mcp,linux"
LABEL konflux.additional-tags=${VERSION}
LABEL name=linux-mcp-server
LABEL org.opencontainers.image.created=${SOURCE_DATE_EPOCH}
LABEL release=${PSEUDO_VERSION}
LABEL summary="Linux MCP Server"
LABEL url="https://github.com/rhel-lightspeed/linux-mcp-server"
LABEL vendor="Red Hat, Inc."
LABEL version=${VERSION}
ADD licenses/ /licenses/
ADD LICENSE /licenses/Apache-2.0.txt
RUN microdnf -y --nodocs --setopt=install_weak_deps=0 install \
git \
openssh \
python3.12 \
python-unversioned-command \
&& microdnf clean all
COPY --from=build /opt/venvs/mcp /opt/venvs/mcp
RUN useradd --key HOME_MODE=0775 --uid "$UID" --gid 0 --create-home --home-dir "$HOME" mcp
USER mcp
WORKDIR $HOME
CMD ["linux-mcp-server"]