We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83864b commit 3fef7a2Copy full SHA for 3fef7a2
scaffolder-templates/agentic-ai-template/skeleton/Dockerfile
@@ -90,11 +90,15 @@ RUN echo '. "${BASH_ENV}"' >> ~/.bashrc
90
# Download and install nvm
91
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | PROFILE="${BASH_ENV}" bash
92
RUN echo node > .nvmrc
93
+
94
USER root
-RUN microdnf install -y gzip python39 python39-devel gcc make
95
96
+RUN microdnf install -y gzip python3 python3-pip
97
# Install uv (using pipx)
-RUN python39 -m pip install pipx && \
- python39 -m pipx ensurepath && \
98
+RUN python3 -m ensurepip && \
99
+ python3 -m pip install --upgrade pip && \
100
+ python3 -m pip install pipx && \
101
+ pipx ensurepath && \
102
pipx install uv
103
104
RUN nvm install
0 commit comments