From e854b2d9ee03e2424a98044418e81fd67aedd70e Mon Sep 17 00:00:00 2001 From: Mohammad Ahtasham ul Hassan <60315450+aht007@users.noreply.github.com> Date: Wed, 7 Dec 2022 17:54:18 +0500 Subject: [PATCH] fix: fix tests in ansible free image (#1391) --- .github/a11y_reqs.sh | 2 +- Dockerfile | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/a11y_reqs.sh b/.github/a11y_reqs.sh index e17f312ef..3e923ae62 100755 --- a/.github/a11y_reqs.sh +++ b/.github/a11y_reqs.sh @@ -9,4 +9,4 @@ url="https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodrive curl -s -L "$url" | tar -xz chmod +x geckodriver -sudo mv geckodriver "$INSTALL_DIR" +mv geckodriver "$INSTALL_DIR" diff --git a/Dockerfile b/Dockerfile index bbfa61dad..8cc41f2d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,11 @@ RUN apt-get update && apt-get install --no-install-recommends -qy \ libmysqlclient-dev \ libssl-dev \ # needed by phantomjs - libfontconfig && \ + libfontconfig \ + # needed by i18n tests in CI + gettext \ + # needed by a11y tests script + curl && \ rm -rf /var/lib/apt/lists/* RUN locale-gen en_US.UTF-8