Merge pull request #1108 from linuxserver/code-server-julia-alpine

code-server-julia: update alpine, fix artifact check url
This commit is contained in:
aptalca 2025-12-31 13:42:51 -05:00 committed by GitHub
commit 5872f29145
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,12 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.23 AS buildstage
ARG MOD_VERSION
RUN \
if [ -z "${MOD_VERSION}" ]; then \
MOD_VERSION=$(curl -sL https://julialang.org/downloads/ \
MOD_VERSION=$(curl -sL https://julialang.org/downloads/manual-downloads/ \
| grep 'Current stable release:' \
| sed 's|.*Current stable release: v||' \
| sed 's| (.*||'); \