File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.6 -alpine as builder
1
+ FROM python:3.8 -alpine 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
@@ -9,13 +9,13 @@ RUN python setup.py bdist_wheel --dist-dir=/wheels
9
9
RUN pip wheel -r requirements.txt --wheel-dir=/wheels
10
10
RUN pip install --no-index --no-warn-script-location --root=/pythonroot/ /wheels/*.whl
11
11
12
- FROM python:3.6 -alpine as module
12
+ FROM python:3.8 -alpine as module
13
13
LABEL maintainer
[email protected]
14
14
15
15
RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
16
16
COPY --from=builder /pythonroot/ /
17
17
18
- FROM python:3.6 -alpine
18
+ FROM python:3.8 -alpine
19
19
LABEL maintainer
[email protected]
20
20
21
21
RUN apk add --no-cache docker nodejs graphviz libxml2 libxslt
You can’t perform that action at this time.
0 commit comments