We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9547c8 commit 8bce787Copy full SHA for 8bce787
qrcode/docker-compose.test.yml
@@ -4,4 +4,15 @@ services:
4
build:
5
context: .
6
dockerfile: Dockerfile
7
- command: "sh -c '[ $$(id -u) -eq 1000 ] && qrencode --version'"
+ 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
+ '
0 commit comments