File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.11-alpine as builder
1
+ FROM python:3.11-alpine3.17 as builder
2
2
3
3
RUN apk add --no-cache git gcc python3-dev libxml2-dev libxslt-dev libc-dev linux-headers
4
4
@@ -15,16 +15,16 @@ RUN pip install --force-reinstall --no-index --no-warn-script-location \
15
15
--root=/pythonroot/ /wheels/*.whl
16
16
# --force-reinstall to install our new mypyc compiled schema-salad package
17
17
18
- FROM python:3.11-alpine as module
18
+ FROM python:3.11-alpine3.17 as module
19
19
LABEL maintainer
[email protected]
20
20
21
- RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
21
+ RUN apk add --no-cache docker nodejs ' graphviz<8' libxml2 libxslt
22
22
COPY --from=builder /pythonroot/ /
23
23
24
- FROM python:3.11-alpine
24
+ FROM python:3.11-alpine3.17
25
25
LABEL maintainer
[email protected]
26
26
27
- RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
27
+ RUN apk add --no-cache docker nodejs ' graphviz<8' libxml2 libxslt
28
28
COPY --from=builder /pythonroot/ /
29
29
COPY cwltool-in-docker.sh /cwltool-in-docker.sh
30
30
You can’t perform that action at this time.
0 commit comments