Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if [ $TARGET = bash ]; then

$CONTAINER_ENGINE build -t ${IMAGE} ${BASE_DIR} -f - <<- EOF
FROM bash:5.1
RUN apk update && apk add bash-completion ca-certificates
RUN apk update && apk add bash-completion ca-certificates libc6-compat

WORKDIR /work
COPY . .
Expand Down Expand Up @@ -78,7 +78,7 @@ if [ $TARGET = bash ]; then

$CONTAINER_ENGINE build -t ${IMAGE} ${BASE_DIR} -f - <<- EOF
FROM bash:4.4
RUN apk update && apk add bash-completion ca-certificates
RUN apk update && apk add bash-completion ca-certificates libc6-compat

WORKDIR /work
COPY . .
Expand Down Expand Up @@ -106,7 +106,7 @@ if [ $TARGET = bash ]; then

$CONTAINER_ENGINE build -t ${IMAGE} ${BASE_DIR} -f - <<- EOF
FROM bash:3.2
RUN apk update && apk add ca-certificates
RUN apk update && apk add ca-certificates libc6-compat
# For bash 3.2, the bash-completion package required is version 1.3
RUN mkdir /usr/share/bash-completion && \
wget -qO - https://github.com/scop/bash-completion/archive/1.3.tar.gz | \
Expand Down Expand Up @@ -139,7 +139,7 @@ if [ $TARGET = bash ]; then
IMAGE=comp-test:bashredhat

$CONTAINER_ENGINE build -t ${IMAGE} ${BASE_DIR} -f - <<- EOF
FROM redhat/ubi8
FROM redhat/ubi9
RUN yum install -y bash-completion which bc

WORKDIR /work
Expand Down