Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 5, 2025
1 parent cbe94e9 commit 6dfdb8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ci/base-images/debian/Dockerfile.dotnet6
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ COPY ci/base-images/debian/install.sh /tmp/
COPY ci/base-images/nuget /usr/lib/mono/nuget

RUN apt-get update && apt-get install -y --no-install-recommends curl bash bzip2 git-core zip unzip make gawk \
&& apt-get install -y build-essential mono-devel \
&& apt-get install -y build-essential mono-devel python3 python3-pip python3-dev \
&& chmod +x /tmp/install.sh \
&& ./tmp/install.sh && rm /tmp/install.sh \
&& node -v \
Expand Down
2 changes: 1 addition & 1 deletion ci/base-images/debian/Dockerfile.dotnet8
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV PATH=${PATH}:/root/.nvm/versions/node/v${NODE_VERSION}/bin:${JAVA_HOME}/bin:
COPY ci/base-images/debian/install.sh /tmp/

RUN apt-get update && apt-get install -y --no-install-recommends curl bash bzip2 git-core zip unzip make gawk \
&& apt-get install -y build-essential \
&& apt-get install -y build-essential python3 python3-pip python3-dev \
&& chmod +x /tmp/install.sh \
&& ./tmp/install.sh && rm /tmp/install.sh \
&& node -v \
Expand Down
2 changes: 1 addition & 1 deletion ci/base-images/debian/Dockerfile.dotnet9
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV PATH=${PATH}:/root/.nvm/versions/node/v${NODE_VERSION}/bin:${JAVA_HOME}/bin:
COPY ci/base-images/debian/install.sh /tmp/

RUN apt-get update && apt-get install -y --no-install-recommends curl bash bzip2 git-core zip unzip make gawk \
&& apt-get install -y build-essential \
&& apt-get install -y build-essential python3 python3-pip python3-dev \
&& chmod +x /tmp/install.sh \
&& ./tmp/install.sh && rm /tmp/install.sh \
&& node -v \
Expand Down
6 changes: 2 additions & 4 deletions ci/base-images/debian/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ fi
sdk offline enable
mv /root/.sdkman/candidates/* /opt/
rm -rf /root/.sdkman
if [ x"${PYTHON_VERSION}" != "x" ]; then
python3 -m pip install --no-cache-dir --upgrade pip virtualenv
python3 -m pip install --no-cache-dir --upgrade --user pipenv poetry uv
fi
python3 -m pip install --no-cache-dir --upgrade pip virtualenv
python3 -m pip install --no-cache-dir --upgrade --user pipenv poetry uv
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
chmod +x /root/.nvm/nvm.sh
source /root/.nvm/nvm.sh
Expand Down

0 comments on commit 6dfdb8c

Please sign in to comment.