Skip to content

Commit 6a10e3a

Browse files
committed
tools/docker: target and fix dotnet 8.0 support
1 parent 66014c7 commit 6a10e3a

19 files changed

Lines changed: 25 additions & 42 deletions

tools/docker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ help:
116116
@echo
117117
@echo -e "\t${BOLD}<lang>${RESET}: Language to build"
118118
@echo -e "\t\t${BOLD}cpp${RESET} C++"
119-
@echo -e "\t\t${BOLD}dotnet${RESET} .Net Core 3.1 and/or .Net 6.0 wrappers"
119+
@echo -e "\t\t${BOLD}dotnet${RESET} .Net Core 3.1 and/or .Net 8.0 wrappers"
120120
@echo -e "\t\t${BOLD}java${RESET} Java (JDK 8.0) wrappers"
121121
@echo -e "\t\t${BOLD}python${RESET} Python 3.9+ wrappers"
122122
@echo

tools/docker/images/almalinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN dnf -y update \
3333
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
3434
&& chmod a+x dotnet-install.sh \
3535
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
36-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
36+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
3737
# Trigger first run experience by running arbitrary cmd
3838
RUN dotnet --info
3939

tools/docker/images/debian-11.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN ARCH=$(uname -m) \
2525
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
2626
&& chmod a+x dotnet-install.sh \
2727
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
28-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
28+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
2929
# Trigger first run experience by running arbitrary cmd
3030
RUN dotnet --info
3131

tools/docker/images/debian-12.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CMD ["/bin/bash"]
1818
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
1919
&& chmod a+x dotnet-install.sh \
2020
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
21-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
21+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
2222
# Trigger first run experience by running arbitrary cmd
2323
RUN dotnet --info
2424

tools/docker/images/debian-13.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CMD ["/bin/bash"]
1818
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
1919
&& chmod a+x dotnet-install.sh \
2020
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
21-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
21+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
2222
# Trigger first run experience by running arbitrary cmd
2323
RUN dotnet --info
2424

tools/docker/images/debian-sid.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apt-get update -qq \
2525
&& dpkg -i packages-microsoft-prod.deb \
2626
&& rm packages-microsoft-prod.deb \
2727
&& apt-get update -qq \
28-
&& apt-get install -qq dotnet-sdk-6.0 \
28+
&& apt-get install -qq dotnet-sdk-8.0 \
2929
&& apt-get clean \
3030
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
3131
# Trigger first run experience by running arbitrary cmd

tools/docker/images/opensuse-leap.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN zypper refresh \
2626
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
2727
&& chmod a+x dotnet-install.sh \
2828
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
29-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
29+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
3030
# Trigger first run experience by running arbitrary cmd
3131
RUN dotnet --info
3232

tools/docker/images/rockylinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN dnf -y update \
3333
RUN wget -q "https://dot.net/v1/dotnet-install.sh" \
3434
&& chmod a+x dotnet-install.sh \
3535
&& ./dotnet-install.sh -c 3.1 -i /usr/local/bin \
36-
&& ./dotnet-install.sh -c 6.0 -i /usr/local/bin
36+
&& ./dotnet-install.sh -c 8.0 -i /usr/local/bin
3737
# Trigger first run experience by running arbitrary cmd
3838
RUN dotnet --info
3939

tools/docker/images/ubuntu-20.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN apt-get update -qq \
3333
&& wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb \
3434
&& dpkg -i packages-microsoft-prod.deb \
3535
&& apt-get update -qq \
36-
&& apt-get install -yq dotnet-sdk-3.1 dotnet-sdk-6.0 \
36+
&& apt-get install -yq dotnet-sdk-3.1 dotnet-sdk-8.0 \
3737
&& apt-get clean \
3838
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
3939
# Trigger first run experience by running arbitrary cmd

tools/docker/images/ubuntu-22.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update -qq \
2424
# see: https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu
2525
# see: https://github.com/dotnet/core/pull/7423/files
2626
RUN apt-get update -qq \
27-
&& apt-get install -yq dotnet-sdk-6.0 \
27+
&& apt-get install -yq dotnet-sdk-8.0 \
2828
&& apt-get clean \
2929
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
3030
# Trigger first run experience by running arbitrary cmd

0 commit comments

Comments
 (0)