File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ RUN apk -U upgrade \
35
35
&& rm -rf /var/cache/apk/*
36
36
37
37
RUN pip3 install --no-cache-dir --upgrade --break-system-packages \
38
- gpxpy==1.6.2 \
39
38
tcx2gpx==0.1.5 \
40
39
yq==3.4.3 \
41
40
&& msg="$(pip3 list --outdated | grep -i -e '^gpxpy ' -e '^tcx2gpx ' -e '^yq ' || true)" \
Original file line number Diff line number Diff line change @@ -4,4 +4,24 @@ services:
4
4
build :
5
5
context : .
6
6
dockerfile : Dockerfile
7
- command : " sh -c '[ $$(id -u) -eq 1000 ] && xmllint --version'"
7
+ command : |
8
+ sh -c '
9
+ set -euo pipefail
10
+ if [ $(id -u) -ne 1000 ]; then
11
+ exit 1
12
+ fi
13
+ base64 --version # coreutils
14
+ curl --version # curl
15
+ git --version # git
16
+ pip --version # py3-pip
17
+ python --version # python3
18
+ yq --version # yq
19
+ xmllint --version # libxml2-utils
20
+ xsltproc --version # libxslt
21
+ mvn --version # maven
22
+ java --version # openjdk21-jre-headless
23
+ xmlindent -v # xmlindent
24
+ xmlsec1 --version # xmlsec
25
+ xmlstarlet --version # xmlstarlet
26
+ xmlto --version # xmlto
27
+ '
You can’t perform that action at this time.
0 commit comments