Skip to content

Commit

Permalink
Merge pull request #918 from linuxserver/code-server-dotnet-noble
Browse files Browse the repository at this point in the history
code-server-dotnet: add support for noble
  • Loading branch information
aptalca authored Jun 19, 2024
2 parents d416c18 + 3eb0a0f commit 6992a2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 as buildstage

ARG MOD_VERSION

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ if [ -d /dotnet ]; then
echo "libicu66" >> /mod-repo-packages-to-install.list
elif [ "${DISTRIB_CODENAME}" == "jammy" ]; then
echo "libicu70" >> /mod-repo-packages-to-install.list
elif [ "${DISTRIB_CODENAME}" == "noble" ]; then
echo "libicu74" >> /mod-repo-packages-to-install.list
fi
# remove existing install if updating
if ls -d /dotnet_* >/dev/null 2>&1; then
Expand Down

0 comments on commit 6992a2c

Please sign in to comment.