Skip to content

Commit b83864b

Browse files
committed
Install uv in dockerfile
1 parent 3b24489 commit b83864b

File tree

1 file changed

+8
-1
lines changed
  • scaffolder-templates/agentic-ai-template/skeleton

1 file changed

+8
-1
lines changed

scaffolder-templates/agentic-ai-template/skeleton/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,16 @@ RUN echo '. "${BASH_ENV}"' >> ~/.bashrc
9191
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | PROFILE="${BASH_ENV}" bash
9292
RUN echo node > .nvmrc
9393
USER root
94-
RUN microdnf install -y gzip
94+
RUN microdnf install -y gzip python39 python39-devel gcc make
95+
# Install uv (using pipx)
96+
RUN python39 -m pip install pipx && \
97+
python39 -m pipx ensurepath && \
98+
pipx install uv
99+
95100
RUN nvm install
96101

102+
RUN mkdir -p /home/default/playground
103+
RUN npm install @modelcontextprotocol/[email protected]
97104
RUN npm install @modelcontextprotocol/[email protected]
98105
RUN npm install @modelcontextprotocol/[email protected]
99106
RUN npm install @modelcontextprotocol/[email protected]

0 commit comments

Comments
 (0)