Browse Source

Add missing utils to rockylinux8 docker file, fix setup fn

pull/731/head
Tim Kimber 4 years ago
parent
commit
1fce9999c4
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
3 changed files with 13 additions and 12 deletions
  1. +0
    -1
      test/2-simple-dns01-dig.bats
  2. +7
    -6
      test/Dockerfile-rockylinux8
  3. +6
    -5
      test/Dockerfile-ubuntu14

+ 0
- 1
test/2-simple-dns01-dig.bats View File

@ -6,7 +6,6 @@ load '/getssl/test/test_helper.bash'
setup_file() {
[ ! -f $BATS_RUN_TMPDIR/failed.skip ] || skip "skipping tests after first failure"
if [ -z "$STAGING" ]; then
export CURL_CA_BUNDLE=/root/pebble-ca-bundle.crt
fi


+ 7
- 6
test/Dockerfile-rockylinux8 View File

@ -1,12 +1,13 @@
FROM rockylinux/rockylinux:8
# Update and install required software
RUN yum -y update
RUN yum -y install epel-release
RUN yum -y install git curl bind-utils wget which nginx jq
RUN yum -y install ftp vsftpd
RUN yum -y install openssh-server
RUN yum -y install glibc-locale-source glibc-langpack-en # for en_US.UTF-8 support
RUN yum -y update && \
yum -y install \
epel-release \
git curl bind-utils wget which nginx jq procps findutils \
ftp vsftpd \
openssh-server \
glibc-locale-source glibc-langpack-en # for en_US.UTF-8 support
# Set locale
ENV LANG en_US.UTF-8


+ 6
- 5
test/Dockerfile-ubuntu14 View File

@ -4,11 +4,12 @@ FROM ubuntu:trusty
# Note this image uses mawk
# Update and install required software
RUN apt-get update --fix-missing
RUN apt-get install -y git curl dnsutils ldnsutils wget nginx-light jq
RUN apt-get install -y ftp vsftpd
RUN apt-get install -y openssh-server
RUN apt-get install -y locales # for idn testing
RUN apt-get update --fix-missing && \
apt-get install -y \
git curl dnsutils ldnsutils wget nginx-light jq \
ftp vsftpd \
openssh-server \
locales # for idn testing
# Set locale
RUN locale-gen en_US.UTF-8


Loading…
Cancel
Save