Skip to content

Commit

Permalink
dockerfile: pin graphviz to before 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Jun 24, 2023
1 parent ac4cd0c commit 8aecdcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cwltool.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine as builder
FROM python:3.11-alpine3.17 as builder

RUN apk add --no-cache git gcc python3-dev libxml2-dev libxslt-dev libc-dev linux-headers

Expand All @@ -15,16 +15,16 @@ RUN pip install --force-reinstall --no-index --no-warn-script-location \
--root=/pythonroot/ /wheels/*.whl
# --force-reinstall to install our new mypyc compiled schema-salad package

FROM python:3.11-alpine as module
FROM python:3.11-alpine3.17 as module
LABEL maintainer peter.amstutz@curii.com

RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
RUN apk add --no-cache docker nodejs 'graphviz<8' libxml2 libxslt
COPY --from=builder /pythonroot/ /

FROM python:3.11-alpine
FROM python:3.11-alpine3.17
LABEL maintainer peter.amstutz@curii.com

RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
RUN apk add --no-cache docker nodejs 'graphviz<8' libxml2 libxslt
COPY --from=builder /pythonroot/ /
COPY cwltool-in-docker.sh /cwltool-in-docker.sh

Expand Down

0 comments on commit 8aecdcc

Please sign in to comment.