Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM mcr.microsoft.com/powershell:lts-7.2-ubuntu-22.04
FROM mcr.microsoft.com/dotnet/sdk:8.0.413-noble

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noble is Ubuntu 23, which is not a LTS version. Do we have image of Ubuntu 24.


# Install dependencies and clean up
RUN apt-get update \
&& apt-get install -y curl \
&& apt-get install -y dotnet-sdk-8.0 \
&& apt-get install -y git \
&& apt-get install -y locales \
&& curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash \
&& . /root/.bashrc \
&& nvm install 20.19.0 \
Expand Down
Loading