Skip to content

Commit 033f6d6

Browse files
committed
Add jq to container; simplify container build command
Installing `jq` in the container allows the `ask::askpass_only` and `ask::username_password` to pass (they use `jq`).
1 parent 06d6048 commit 033f6d6

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

etc/docker/Dockerfile.test-cross-s390x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ RUN set -xC && \
88
apt-key adv --keyserver keyserver.ubuntu.com \
99
--recv-keys F911AB184317630C59970973E363C90F8F1B6217 && \
1010
apt-get update && \
11-
apt-get install --no-install-recommends -y git && \
11+
apt-get install --no-install-recommends -y git jq && \
1212
rm -rf /var/lib/apt/lists/* && \
1313
git config --system gitoxide.imaginary.arbitraryVariable arbitraryValue
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
#!/bin/sh
2-
set -e
3-
mkdir empty-context
4-
docker build -f etc/docker/Dockerfile.test-cross-s390x \
5-
-t cross-rs-gitoxide/s390x-unknown-linux-gnu empty-context
2+
docker build -t cross-rs-gitoxide/s390x-unknown-linux-gnu - <etc/docker/Dockerfile.test-cross-s390x

0 commit comments

Comments
 (0)