We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 761283a + a73da2a commit d61c2d0Copy full SHA for d61c2d0
Dockerfile
@@ -1,7 +1,7 @@
1
# syntax=docker/dockerfile:1
2
3
## Buildstage ##
4
-FROM ghcr.io/linuxserver/baseimage-alpine:3.18 as buildstage
+FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
5
6
ARG MOD_VERSION
7
@@ -15,8 +15,9 @@ RUN \
15
mkdir -p /root-layer/opencl-intel && \
16
for i in $COMP_RT_URLS; do \
17
echo "**** downloading ${i%$'\r'} ****" && \
18
- curl -o /root-layer/opencl-intel/$(basename "${i%$'\r'}") \
19
- -fL "${i%$'\r'}"; \
+ curl -fS --retry 3 --retry-connrefused -o \
+ /root-layer/opencl-intel/$(basename "${i%$'\r'}") -L \
20
+ "${i%$'\r'}" || exit 1; \
21
done
22
23
# copy local files
0 commit comments