We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfe3ea commit c690cbcCopy full SHA for c690cbc
xml/Dockerfile
@@ -16,8 +16,6 @@ RUN apk --update --no-cache add \
16
maven \
17
openjdk21-jre-headless \
18
py3-pip \
19
- python3 \
20
- python3-dev \
21
xmlindent \
22
xmlsec \
23
xmlstarlet \
@@ -30,7 +28,7 @@ RUN pip3 install --no-cache-dir --upgrade --break-system-packages \
30
28
gpxpy==1.6.2 \
31
29
tcx2gpx==0.1.5 \
32
yq==3.4.3 \
33
- && msg="$(pip list --outdated | grep -e -e gpxpy -e tcx2gpx -e yq || true)" \
+ && msg="$(pip3 list --outdated | grep -i -e '^gpxpy ' -e '^tcx2gpx ' -e '^yq ' || true)" \
34
&& if [ -n "${msg}" ]; then \
35
>&2 echo "ERROR: outdated: ${msg}" ; \
36
exit 1 ; \
0 commit comments